largefiles: remove silent handling of incorrect invocation of restorematchfn

It is better to get a crash than to continue without noticing errors.
This commit is contained in:
Mads Kiilerich 2014-04-13 18:45:43 +02:00
parent 4308622a72
commit 2cc2b0c179

View File

@ -54,7 +54,7 @@ def restorematchfn():
Note that n calls to installmatchfn will require n calls to
restore matchfn to reverse'''
scmutil.match = getattr(scmutil.match, 'oldmatch', scmutil.match)
scmutil.match = getattr(scmutil.match, 'oldmatch')
def addlargefiles(ui, repo, *pats, **opts):
large = opts.pop('large', None)