From 3efacd7aea48c93e0a42c1e83bf3c96e9e50f178 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Wed, 7 Jan 2015 09:06:52 +0100 Subject: This should fix flake8 on py3 See #177 --- git/cmd.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'git/cmd.py') diff --git a/git/cmd.py b/git/cmd.py index 7a670c46..4a49bc1b 100644 --- a/git/cmd.py +++ b/git/cmd.py @@ -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', -- cgit v1.2.1