diff options
| -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 |
