Skip to content
Snippets Groups Projects
Commit 2cc65b2fb79e authored by Boris Feld's avatar Boris Feld
Browse files

Moves time_bundle to kwargs

parent 64682bee8abc
No related branches found
No related tags found
No related merge requests found
......@@ -184,8 +184,9 @@
timeout = 500
def time_bundle(self, repo, n):
self.hg("bundle", "--base", ":(-%d)" % (n+1), "/tmp/bundle.bundle")
@params_as_kwargs
def time_bundle(self, repo, changesets, **kwargs):
self.hg("bundle", "--base", ":(-%d)" % (changesets+1), "/tmp/bundle.bundle")
class HgWeb(object):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment