diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2016-05-30 18:53:23 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2016-05-30 18:53:23 +0200 |
commit | f5089d9d6c303b47936a741b7bdf37293ec3a1c6 (patch) | |
tree | 932a165ad2968a2c0dba7853c60b6da5e7e30ab9 /doc/source/changes.rst | |
parent | a3f24f64a20d1e09917288f67fd21969f4444acd (diff) | |
parent | 1faf84f8eb760b003ad2be81432443bf443b82e6 (diff) | |
download | gitpython-f5089d9d6c303b47936a741b7bdf37293ec3a1c6.tar.gz |
Merge pull request #454 from gitpython-developers/fix-octal-escaped-path-parser-bug
Fix bug in diff parser output
Diffstat (limited to 'doc/source/changes.rst')
-rw-r--r-- | doc/source/changes.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/source/changes.rst b/doc/source/changes.rst index 928675d0..dd7a3815 100644 --- a/doc/source/changes.rst +++ b/doc/source/changes.rst @@ -5,6 +5,8 @@ Changelog 2.0.4 - Fixes ============= +* Fix: non-ASCII paths are now properly decoded and returned in + ``.diff()`` output * Fix: `RemoteProgress` will now strip the ', ' prefix or suffix from messages. * API: Remote.[fetch|push|pull](...) methods now allow the ``progress`` argument to be a callable. This saves you from creating a custom type with usually just one |