summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchipx86 <chipx86@5efc13c4-1f27-0410-8691-ff2d1f55687e>2009-06-10 10:47:02 +0000
committerchipx86 <chipx86@5efc13c4-1f27-0410-8691-ff2d1f55687e>2009-06-10 10:47:02 +0000
commit464cc87c7d2e83f3dacb7848e9d67c05d2720d96 (patch)
tree70c3cb3746912f6fc5e0e2bf75786a2cddc7b288
parent9bbee2431e6a9c0627043ca67753768374a1a0dd (diff)
Fix a missing space when building a revision string for ClearCase.
-rwxr-xr-xscripts/post-review2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/post-review b/scripts/post-review
index c58b0ee..6990b50 100755
--- a/scripts/post-review
+++ b/scripts/post-review
@@ -955,7 +955,7 @@ class ClearCaseClient(SCMClient):
rev_str = ''
for rev in revision_range.split(":"):
- rev_str += "-r %s" % rev
+ rev_str += "-r %s " % rev
return self.do_diff(rev_str)