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
1=== modified file 'copybump.py' (properties changed: +x to -x)
2=== modified file 'cron/crontab.in.in' (properties changed: +x to -x)
3=== modified file 'src/mailman/core/switchboard.py'
4--- src/mailman/core/switchboard.py 2015-01-05 01:40:47 +0000
5+++ src/mailman/core/switchboard.py 2015-03-16 16:28:28 +0000
6@@ -179,9 +179,9 @@
7 os.rename(bakfile, psvfile)
8 else:
9 os.unlink(bakfile)
10- except EnvironmentError:
11+ except EnvironmentError as e:
12 elog.exception(
13- 'Failed to unlink/preserve backup file: %s', bakfile)
14+ 'Failed to unlink/preserve backup file: %s : %s', bakfile,str(e))
15
16 @property
17 def files(self):