##// END OF EJS Templates
branchmap: pytype is confused about bytestr...
Augie Fackler -
r43805:1a47fe4b default
parent child Browse files
Show More
@@ -269,7 +269,13 class branchcache(object):
269 269 if repo.ui.debugflag:
270 270 msg = b'invalid %s: %s\n'
271 271 repo.ui.debug(
272 msg % (_branchcachedesc(repo), pycompat.bytestr(inst))
272 msg
273 % (
274 _branchcachedesc(repo),
275 pycompat.bytestr(
276 inst # pytype: disable=wrong-arg-types
277 ),
278 )
273 279 )
274 280 bcache = None
275 281
General Comments 0
You need to be logged in to leave comments. Login now