diff hgext/convert/convcmd.py @ 16689:f366d4c2ff34

cleanup: replace naked excepts with except Exception: ...
author Brodie Rao <brodie@sf.io>
date Sat, 12 May 2012 16:02:46 +0200
parents 67964cda8701
children eaf6a6d7f015
line wrap: on
line diff
--- a/hgext/convert/convcmd.py	Sat May 12 16:02:45 2012 +0200
+++ b/hgext/convert/convcmd.py	Sat May 12 16:02:46 2012 +0200
@@ -462,7 +462,7 @@
     if not revmapfile:
         try:
             revmapfile = destc.revmapfile()
-        except:
+        except Exception:
             revmapfile = os.path.join(destc, "map")
 
     c = converter(ui, srcc, destc, revmapfile, opts)