##// END OF EJS Templates
wireproto: remove unnecessary exception trapping...
Gregory Szorc -
r35997:ae79cf6f default
parent child Browse files
Show More
@@ -914,11 +914,8 b' def pushkey(repo, proto, namespace, key,'
914
914
915 proto.redirect()
915 proto.redirect()
916
916
917 try:
917 r = repo.pushkey(encoding.tolocal(namespace), encoding.tolocal(key),
918 r = repo.pushkey(encoding.tolocal(namespace), encoding.tolocal(key),
918 encoding.tolocal(old), new) or False
919 encoding.tolocal(old), new) or False
920 except error.Abort:
921 r = False
922
919
923 output = proto.restore()
920 output = proto.restore()
924
921
General Comments 0
You need to be logged in to leave comments. Login now