summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchipx86 <chipx86@5efc13c4-1f27-0410-8691-ff2d1f55687e>2009-04-23 09:33:52 +0000
committerchipx86 <chipx86@5efc13c4-1f27-0410-8691-ff2d1f55687e>2009-04-23 09:33:52 +0000
commit36f2eaa22a137e17552916d8cd4d0e39fd8d9f58 (patch)
tree9e35b5af6f88b249160f92f0b45368a5bc4c53c2
parent4dde755a397cfbcb8099b117deac8c2f3e64f50d (diff)
Patch by Jeremy Bettis to properly join a SVN repository base path and a file path using a "/" instead of "\" on Windows.
This fixes bug #939.
-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"]