Index: tools/push-to-trunk/git_recipes.py |
diff --git a/tools/push-to-trunk/git_recipes.py b/tools/push-to-trunk/git_recipes.py |
index 088ba53bd806bdbae83e52590b44962493854b4c..fb7424f709478885ed5142d2dbb4c467f92b8222 100644 |
--- a/tools/push-to-trunk/git_recipes.py |
+++ b/tools/push-to-trunk/git_recipes.py |
@@ -68,7 +68,7 @@ class GitRecipesMixin(object): |
for line in self.Git("status -s -b -uno").strip().splitlines(): |
match = re.match(r"^## (.+)", line) |
if match: return match.group(1) |
- raise Exception("Couldn't find curent branch.") |
+ raise Exception("Couldn't find curent branch.") # pragma: no cover |
@Strip |
def GitLog(self, n=0, format="", grep="", git_hash="", parent_hash="", |