reraise exception without changing traceback

This commit is contained in:
David Baumgold
2014-03-18 14:18:33 -04:00
parent a6d5b7f2c7
commit 19b8b1debe

View File

@@ -46,7 +46,7 @@ def merge(locale, target='django.po', sources=('django-partial.po',), fail_if_mi
except Exception, e:
if not fail_if_missing:
return
raise e
raise
# merged file is merged.po
merge_cmd = 'msgcat -o merged.po ' + ' '.join(sources)