##// END OF EJS Templates
blackbox: fix blackbox causing exceptions in tests...
Durham Goode -
r19230:6d6f148c stable
parent child Browse files
Show More
@@ -126,7 +126,8 b' def reposetup(ui, repo):'
126 if not repo.local():
126 if not repo.local():
127 return
127 return
128
128
129 ui.setrepo(repo)
129 if util.safehasattr(ui, 'setrepo'):
130 ui.setrepo(repo)
130
131
131 @command('^blackbox',
132 @command('^blackbox',
132 [('l', 'limit', 10, _('the number of events to show')),
133 [('l', 'limit', 10, _('the number of events to show')),
General Comments 0
You need to be logged in to leave comments. Login now