Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/git.py
diff options
context:
space:
mode:
Diffstat (limited to 'devbot/git.py')
-rw-r--r--devbot/git.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/devbot/git.py b/devbot/git.py
index f1a7acc..b3f3594 100644
--- a/devbot/git.py
+++ b/devbot/git.py
@@ -39,7 +39,8 @@ class Module:
if self.tag:
command.run(["git", "checkout", self.tag])
else:
- command.run(["git", "merge", "--ff-only", "origin", self._branch],
+ command.run(["git", "merge", "--ff-only",
+ "origin/%s" % self._branch],
retry=self._retry)
def clean(self):