summaryrefslogtreecommitdiff
path: root/git/test/test_base.py
diff options
context:
space:
mode:
Diffstat (limited to 'git/test/test_base.py')
-rw-r--r--git/test/test_base.py2
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")