Submitter | Durham Goode |
---|---|
Date | May 23, 2013, 12:43 a.m. |
Message ID | <93974b60ce3a20e57c6f.1369269823@dev350.prn1.facebook.com> |
Download | mbox | patch |
Permalink | /patch/1662/ |
State | Superseded |
Commit | 6d6f148cada9677f0737517a071eebdf769b8f4b |
Headers | show |
Comments
Patch
diff --git a/hgext/blackbox.py b/hgext/blackbox.py --- a/hgext/blackbox.py +++ b/hgext/blackbox.py @@ -126,7 +126,8 @@ if not repo.local(): return - ui.setrepo(repo) + if util.safehasattr(ui, 'setrepo'): + ui.setrepo(repo) @command('^blackbox', [('l', 'limit', 10, _('the number of events to show')),