diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-03-02 10:17:36 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-03-02 10:17:36 +0000 |
commit | c3e8fc5f1a2daac4b2972effd79e9cf5e4e6cba6 (patch) | |
tree | 3d23cc56ef696efc0c09b42f3441366ec4acb62b /lib/redmine/scm/adapters/mercurial/redminehelper.py | |
parent | a79c89eb3ca5e23c9451800aa828160faa4175f0 (diff) | |
download | redmine-c3e8fc5f1a2daac4b2972effd79e9cf5e4e6cba6.tar.gz redmine-c3e8fc5f1a2daac4b2972effd79e9cf5e4e6cba6.zip |
scm: mercurial: wrap revison, tag and branch with URL encoding for entries (#4455, #1981, #7246).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4989 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine/scm/adapters/mercurial/redminehelper.py')
-rw-r--r-- | lib/redmine/scm/adapters/mercurial/redminehelper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/redmine/scm/adapters/mercurial/redminehelper.py b/lib/redmine/scm/adapters/mercurial/redminehelper.py index 9bca6c9bd..e6c9182f0 100644 --- a/lib/redmine/scm/adapters/mercurial/redminehelper.py +++ b/lib/redmine/scm/adapters/mercurial/redminehelper.py @@ -140,7 +140,7 @@ def rhmanifest(ui, repo, path='', **opts): ui.write('<rhmanifest>\n') ui.write('<repository root="%s">\n' % _u(repo.root)) try: - _manifest(ui, repo, urllib.unquote_plus(path), opts.get('rev')) + _manifest(ui, repo, urllib.unquote_plus(path), urllib.unquote_plus(opts.get('rev'))) finally: ui.write('</repository>\n') ui.write('</rhmanifest>\n') |