From 36f2eaa22a137e17552916d8cd4d0e39fd8d9f58 Mon Sep 17 00:00:00 2001 From: chipx86 Date: Thu, 23 Apr 2009 09:33:52 +0000 Subject: 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. --- AUTHORS | 1 + scripts/post-review | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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"] -- cgit v1.2.3