diff options
| author | bwarsaw | 2001-02-16 06:13:03 +0000 |
|---|---|---|
| committer | bwarsaw | 2001-02-16 06:13:03 +0000 |
| commit | 93ecd98e59620200a4d7e028d62bfbf6d27e6e12 (patch) | |
| tree | 31e6c237f22ed350dac9b425f70aeb3cbf3dc943 /Mailman/MailList.py | |
| parent | 101fc1628d6d0c2e9cd055b11ba1a07e9c200b89 (diff) | |
| download | mailman-93ecd98e59620200a4d7e028d62bfbf6d27e6e12.tar.gz mailman-93ecd98e59620200a4d7e028d62bfbf6d27e6e12.tar.zst mailman-93ecd98e59620200a4d7e028d62bfbf6d27e6e12.zip | |
Create(): We don't need to touch the digest files since we're doing
that differently now.
Diffstat (limited to 'Mailman/MailList.py')
| -rw-r--r-- | Mailman/MailList.py | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/Mailman/MailList.py b/Mailman/MailList.py index af023cd8d..f6323f9cd 100644 --- a/Mailman/MailList.py +++ b/Mailman/MailList.py @@ -823,17 +823,6 @@ it will not be changed.""")), self._ready = 1 self.InitTemplates() self.Save() - # Touch these files so they have the right dir perms no matter what. - # A "just-in-case" thing. This shouldn't have to be here. - ou = os.umask(002) - try: - path = os.path.join(self._full_path, 'next-digest') - fp = open(path, "a+") - fp.close() - fp = open(path+'-topics', "a+") - fp.close() - finally: - os.umask(ou) def __save(self, dict): # Marshal this dictionary to file, and rotate the old version to a |
