Merge lp:~d.a.eliseev/groundcontrol/fix520457 into lp:groundcontrol

Proposed by Denis Eliseev
Status: Merged
Merged at revision: not available
Proposed branch: lp:~d.a.eliseev/groundcontrol/fix520457
Merge into: lp:groundcontrol
Diff against target: 19 lines (+2/-1)
1 file modified
GroundControl/bazaar.py (+2/-1)
To merge this branch: bzr merge lp:~d.a.eliseev/groundcontrol/fix520457
Reviewer Review Type Date Requested Status
Martin Owens Approve
Review via email: mp+19098@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Denis Eliseev (d.a.eliseev) wrote :

Fix error with non-latin characters in XDG_PROJECTS_DIR

Revision history for this message
Martin Owens (doctormo) wrote :

thanks for the fix, merging in now.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'GroundControl/bazaar.py'
2--- GroundControl/bazaar.py 2010-02-10 20:26:24 +0000
3+++ GroundControl/bazaar.py 2010-02-11 13:54:13 +0000
4@@ -23,6 +23,7 @@
5 import time
6 import logging
7 import shutil
8+import urllib
9
10 from GroundControl.gtkcommon import StatusApp
11
12@@ -69,7 +70,7 @@
13 @property
14 def path(self):
15 """Return a path only if the branch is local"""
16- url = self.url
17+ url = urllib.unquote(self.url)
18 if url[:7] == 'file://':
19 return url[7:]
20

Subscribers

People subscribed via source and target branches