diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2015-02-09 19:22:18 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2015-02-09 19:22:18 +0100 |
commit | fe426d404b727d0567f21871f61cc6dc881e8bf0 (patch) | |
tree | c5f4042a65ab7ba598c8110bb12340afb8cdc4c3 /git/test/test_base.py | |
parent | 756b7ad43d0ad18858075f90ce5eaec2896d439c (diff) | |
download | gitpython-fe426d404b727d0567f21871f61cc6dc881e8bf0.tar.gz |
Minor Flake8 fixes.
Latest version of it is required to show the issues travis shows as well
Diffstat (limited to 'git/test/test_base.py')
-rw-r--r-- | git/test/test_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/test/test_base.py b/git/test/test_base.py index 72f2d554..94379ca3 100644 --- a/git/test/test_base.py +++ b/git/test/test_base.py @@ -120,7 +120,7 @@ class TestBase(TestBase): # verify first that we could encode file name in this environment try: - _ = file_path.encode(sys.getfilesystemencoding()) + file_path.encode(sys.getfilesystemencoding()) except UnicodeEncodeError: from nose import SkipTest raise SkipTest("Environment doesn't support unicode filenames") |