diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2015-01-07 09:06:52 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2015-01-07 09:06:52 +0100 |
commit | 3efacd7aea48c93e0a42c1e83bf3c96e9e50f178 (patch) | |
tree | c526ec0e62cddafca1f85cc7d73d79bff10be395 /git/cmd.py | |
parent | d437078d8f95cb98f905162b2b06d04545806c59 (diff) | |
download | gitpython-3efacd7aea48c93e0a42c1e83bf3c96e9e50f178.tar.gz |
This should fix flake8 on py3
See #177
Diffstat (limited to 'git/cmd.py')
-rw-r--r-- | git/cmd.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -22,7 +22,9 @@ from .exc import GitCommandError from git.compat import ( string_types, defenc, - PY3 + PY3, + # just to satisfy flake8 on py3 + unicode ) execute_kwargs = ('istream', 'with_keep_cwd', 'with_extended_output', |