diff options
author | Lars Schneider <larsxschneider@gmail.com> | 2015-09-21 10:49:18 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-09-21 13:24:11 -0700 |
commit | 4cb870d8042bef3fdd953c633463eda24ce78f3d (patch) | |
tree | 02a98ef53eb6eef0004f26e7281995bf0d79cd9f | |
parent | git-p4: improve path encoding verbose output (diff) | |
download | tgif-4cb870d8042bef3fdd953c633463eda24ce78f3d.tar.xz |
git-p4: use replacement character for non UTF-8 characters in paths
If non UTF-8 characters are detected in paths then replace them with
a placeholder instead of throwing a UnicodeDecodeError
exception. This restores the original (implicit) implementation that
was broken in 00a9403.
Signed-off-by: Lars Schneider <larsxschneider@gmail.com>
Reviewed-by: Luke Diamand <luke@diamand.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | git-p4.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2219,7 +2219,7 @@ class P4Sync(Command, P4UserMap): encoding = 'utf8' if gitConfig('git-p4.pathEncoding'): encoding = gitConfig('git-p4.pathEncoding') - relPath = relPath.decode(encoding).encode('utf8', 'replace') + relPath = relPath.decode(encoding, 'replace').encode('utf8', 'replace') if self.verbose: print 'Path with non-ASCII characters detected. Used %s to encode: %s ' % (encoding, relPath) |