##// END OF EJS Templates
largefiles: remove a chunk of commented out code
Dan Villiom Podlaski Christiansen -
r15783:927712d9 default
parent child Browse files
Show More
@@ -26,8 +26,6 b' def reposetup(ui, repo):'
26
26
27 for name in ('status', 'commitctx', 'commit', 'push'):
27 for name in ('status', 'commitctx', 'commit', 'push'):
28 method = getattr(repo, name)
28 method = getattr(repo, name)
29 #if not (isinstance(method, types.MethodType) and
30 # method.im_func is repo.__class__.commitctx.im_func):
31 if (isinstance(method, types.FunctionType) and
29 if (isinstance(method, types.FunctionType) and
32 method.func_name == 'wrap'):
30 method.func_name == 'wrap'):
33 ui.warn(_('largefiles: repo method %r appears to have already been'
31 ui.warn(_('largefiles: repo method %r appears to have already been'
General Comments 0
You need to be logged in to leave comments. Login now