Merge lp:~rashi007/mailman/rashi into lp:mailman

Proposed by Rashi Karanpuria
Status: Rejected
Rejected by: Barry Warsaw
Proposed branch: lp:~rashi007/mailman/rashi
Merge into: lp:mailman
Diff against target: 17 lines (+2/-2)
1 file modified
src/mailman/core/switchboard.py (+2/-2)
To merge this branch: bzr merge lp:~rashi007/mailman/rashi
Reviewer Review Type Date Requested Status
Mailman Coders Pending
Review via email: mp+253080@code.launchpad.net

Description of the change

Bug fix for 1165589

To post a comment you must log in.

Unmerged revisions

7302. By Rashi Karanpuria

Fix for bug #1165589

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'copybump.py' (properties changed: +x to -x)
=== modified file 'cron/crontab.in.in' (properties changed: +x to -x)
=== modified file 'src/mailman/core/switchboard.py'
--- src/mailman/core/switchboard.py 2015-01-05 01:40:47 +0000
+++ src/mailman/core/switchboard.py 2015-03-16 16:28:28 +0000
@@ -179,9 +179,9 @@
179 os.rename(bakfile, psvfile)179 os.rename(bakfile, psvfile)
180 else:180 else:
181 os.unlink(bakfile)181 os.unlink(bakfile)
182 except EnvironmentError:182 except EnvironmentError as e:
183 elog.exception(183 elog.exception(
184 'Failed to unlink/preserve backup file: %s', bakfile)184 'Failed to unlink/preserve backup file: %s : %s', bakfile,str(e))
185185
186 @property186 @property
187 def files(self):187 def files(self):