Submitter | phabricator |
---|---|
Date | Aug. 9, 2018, 6:10 p.m. |
Message ID | <f1bc381f83a2486d47db492158514014@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/33487/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/debugcommands.py b/mercurial/debugcommands.py --- a/mercurial/debugcommands.py +++ b/mercurial/debugcommands.py @@ -896,6 +896,8 @@ _('[-r REV] [--all-files] [OPTION]... FILESPEC')) def debugfileset(ui, repo, expr, **opts): '''parse and apply a fileset specification''' + from . import fileset + fileset.symbols # force import of fileset so we have predicates to optimize opts = pycompat.byteskwargs(opts) ctx = scmutil.revsingle(repo, opts.get('rev'), None)