summaryrefslogtreecommitdiff
path: root/firehose/plugin/firehose_plugin.py
diff options
context:
space:
mode:
authorBob Mottram <bob.mottram@codethink.co.uk>2015-03-31 11:54:55 +0100
committerFrancisco Redondo <francisco.marchena@codethink.co.uk>2015-06-11 15:57:31 +0000
commit8da086debba74467b433a202f0741392edf56772 (patch)
tree974818381e934ef6a7bdec2975fb2e53238a2c82 /firehose/plugin/firehose_plugin.py
parentf671375c5ec7600a4f0c35e7a4e8904c25446bdc (diff)
downloadfirehose-8da086debba74467b433a202f0741392edf56772.tar.gz
Remove name parameter
Otherwise this causes a compile error as the parameter is not needed and is not passed to make_branch when called. Change-Id: I19562874acb8a4b694efa49314ac4c3a2efb2784
Diffstat (limited to 'firehose/plugin/firehose_plugin.py')
-rw-r--r--firehose/plugin/firehose_plugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/firehose/plugin/firehose_plugin.py b/firehose/plugin/firehose_plugin.py
index 33381bf..d1bbf31 100644
--- a/firehose/plugin/firehose_plugin.py
+++ b/firehose/plugin/firehose_plugin.py
@@ -96,7 +96,7 @@ class FirehosePlugin(cliapp.Plugin):
def make_workspace(self):
self.app.subcommands['init']([self.make_path("ws")])
- def make_branch(self, root, name):
+ def make_branch(self, root):
os.chdir(self.make_path("ws"))
try:
self.app.subcommands['branch']([root['repo'], root['myref'], root['baseref']])