diff options
Diffstat (limited to 'manifest_xml.py')
-rw-r--r-- | manifest_xml.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifest_xml.py b/manifest_xml.py index 04cabaad..ab842f3f 100644 --- a/manifest_xml.py +++ b/manifest_xml.py | |||
@@ -336,7 +336,7 @@ class XmlManifest(object): | |||
336 | # tricky. actual parsing implementation may vary. | 336 | # tricky. actual parsing implementation may vary. |
337 | except (KeyboardInterrupt, RuntimeError, SystemExit): | 337 | except (KeyboardInterrupt, RuntimeError, SystemExit): |
338 | raise | 338 | raise |
339 | except Exception, e: | 339 | except Exception as e: |
340 | raise ManifestParseError( | 340 | raise ManifestParseError( |
341 | "failed parsing included manifest %s: %s", (name, e)) | 341 | "failed parsing included manifest %s: %s", (name, e)) |
342 | else: | 342 | else: |