From 8da086debba74467b433a202f0741392edf56772 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Tue, 31 Mar 2015 11:54:55 +0100 Subject: 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 --- firehose/plugin/firehose_plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'firehose/plugin/firehose_plugin.py') 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']]) -- cgit v1.2.1