##// END OF EJS Templates
largefile: use sysstr to check for attribute presence in `rebase` wrapping...
marmoute -
r51783:ab3267a8 default
parent child Browse files
Show More
@@ -1167,7 +1167,7 b' def hgclone(orig, ui, opts, *args, **kwa'
1167
1167
1168 @eh.wrapcommand(b'rebase', extension=b'rebase')
1168 @eh.wrapcommand(b'rebase', extension=b'rebase')
1169 def overriderebasecmd(orig, ui, repo, **opts):
1169 def overriderebasecmd(orig, ui, repo, **opts):
1170 if not util.safehasattr(repo, b'_largefilesenabled'):
1170 if not util.safehasattr(repo, '_largefilesenabled'):
1171 return orig(ui, repo, **opts)
1171 return orig(ui, repo, **opts)
1172
1172
1173 resuming = opts.get('continue')
1173 resuming = opts.get('continue')
General Comments 0
You need to be logged in to leave comments. Login now