##// END OF EJS Templates
tests: fix a "naked exception" issue in test-remotefilelog-prefetch.t...
Kyle Lippincott -
r44468:1e0783b9 default
parent child Browse files
Show More
@@ -250,7 +250,7 b''
250 > try:
250 > try:
251 > hexid = (b'%02x' % (i + 1)) * 20
251 > hexid = (b'%02x' % (i + 1)) * 20
252 > repo.fileservice.prefetch([(b'somefile.txt', hexid)])
252 > repo.fileservice.prefetch([(b'somefile.txt', hexid)])
253 > except:
253 > except Exception:
254 > pass
254 > pass
255 > EOF
255 > EOF
256
256
General Comments 0
You need to be logged in to leave comments. Login now