Index: scm.py |
diff --git a/scm.py b/scm.py |
index 6acac8201029cb5ec5ddc913750293fa5cbd9ffb..79432423b0e05159a8a3e2b3d30bc94003416429 100644 |
--- a/scm.py |
+++ b/scm.py |
@@ -310,7 +310,7 @@ class GIT(object): |
def GetPatchName(cwd): |
"""Constructs a name for this patch.""" |
short_sha = GIT.Capture(['rev-parse', '--short=4', 'HEAD'], cwd)[0].strip() |
- return "%s-%s" % (GIT.GetBranch(cwd), short_sha) |
+ return "%s#%s" % (GIT.GetBranch(cwd), short_sha) |
@staticmethod |
def GetCheckoutRoot(path): |