##// END OF EJS Templates
py3: catch binascii.Error raised from binascii.unhexlify...
Pulkit Goyal -
r32969:30d0cb27 default
parent child Browse files
Show More
@@ -13,6 +13,7 b' and O(changes) merge between branches.'
13 13
14 14 from __future__ import absolute_import
15 15
16 import binascii
16 17 import collections
17 18 import errno
18 19 import hashlib
@@ -1094,7 +1095,7 b' class revlog(object):'
1094 1095 if maybewdir:
1095 1096 raise error.WdirUnsupported
1096 1097 return None
1097 except TypeError:
1098 except (TypeError, binascii.Error):
1098 1099 pass
1099 1100
1100 1101 def lookup(self, id):
General Comments 0
You need to be logged in to leave comments. Login now