summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AUTHORS1
-rwxr-xr-xscripts/post-review2
2 files changed, 2 insertions, 1 deletions
diff --git a/AUTHORS b/AUTHORS
index 5c1ed96..f498c21 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -7,6 +7,7 @@ Lead Developers:
Contributors:
* Eric Huss
+ * Jeremy Bettis
* Lepton Wu
* Luke Lu
* Paul Scott
diff --git a/scripts/post-review b/scripts/post-review
index f2a0102..ef51323 100755
--- a/scripts/post-review
+++ b/scripts/post-review
@@ -1206,7 +1206,7 @@ class SVNClient(SCMClient):
# add initial slash.
if options.repository_url:
path = urllib.unquote(
- os.path.join(repository_info.base_path, file))
+ "%s/%s" % (repository_info.base_path, file))
else:
info = self.svn_info(file)
url = info["URL"]