Changeset 456
- Timestamp:
- 28-12-09 17:51:22 (3 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
moap/vcs/svn.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r450 r456 1 2009-12-28 Thomas Vander Stichele <thomas at apestaart dot org> 2 3 * moap/vcs/svn.py: 4 Switch from C to en_US.utf8 locale when spawning svn so that 5 moap works when there are files with UTF-8 characters. 6 1 7 2009-09-27 Thomas Vander Stichele <thomas at apestaart dot org> 2 8 -
trunk/moap/vcs/svn.py
r427 r456 148 148 if revision1 and revision2: 149 149 rev = '-r %s:%s' % (revision1, revision2) 150 cmd = "LANG= Csvn diff %s %s" % (rev, path)150 cmd = "LANG=en_US.utf8 svn diff %s %s" % (rev, path) 151 151 self.debug('Running %s', cmd) 152 152 output = commands.getoutput(cmd) … … 171 171 ret = {} 172 172 173 cmd = "LANG= Csvn diff %s" % path173 cmd = "LANG=en_US.utf8 svn diff %s" % path 174 174 # we add a newline so we can match each Property changes block by 175 175 # having it end on a newline, including the last block
Note: See TracChangeset
for help on using the changeset viewer.
