From 93ecd98e59620200a4d7e028d62bfbf6d27e6e12 Mon Sep 17 00:00:00 2001 From: bwarsaw Date: Fri, 16 Feb 2001 06:13:03 +0000 Subject: Create(): We don't need to touch the digest files since we're doing that differently now. --- Mailman/MailList.py | 11 ----------- 1 file changed, 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 -- cgit v1.3.1