Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--devbot/git.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/devbot/git.py b/devbot/git.py
index 960fd7c..adfeb33 100644
--- a/devbot/git.py
+++ b/devbot/git.py
@@ -56,7 +56,7 @@ class Module:
command.run(["git", "fetch"], retry=self._retry)
if revision:
- command.run(["git", "checkout", revision])
+ command.run(["git", "checkout", revision])
elif self.tag:
command.run(["git", "checkout", self.tag])
else: