##// END OF EJS Templates
largefiles: py2.4 doesn't have BaseException...
Matt Mackall -
r15333:f37b71fe stable
parent child Browse files
Show More
@@ -446,6 +446,6 b' def islfilesrepo(repo):'
446 return ('largefiles' in repo.requirements and
446 return ('largefiles' in repo.requirements and
447 util.any(shortname + '/' in f[0] for f in repo.store.datafiles()))
447 util.any(shortname + '/' in f[0] for f in repo.store.datafiles()))
448
448
449 class storeprotonotcapable(BaseException):
449 class storeprotonotcapable(Exception):
450 def __init__(self, storetypes):
450 def __init__(self, storetypes):
451 self.storetypes = storetypes
451 self.storetypes = storetypes
General Comments 0
You need to be logged in to leave comments. Login now