summaryrefslogtreecommitdiff
path: root/git/test/test_base.py
diff options
context:
space:
mode:
authorHarmon <Harmon758@gmail.com>2020-02-25 11:04:34 -0600
committerHarmon <Harmon758@gmail.com>2020-02-25 11:04:34 -0600
commitd39bd5345af82e3acbdc1ecb348951b05a5ed1f6 (patch)
treedfccb83bafd000d0704d473e1090a4158da136f9 /git/test/test_base.py
parentac286162b577c35ce855a3048c82808b30b217a8 (diff)
downloadgitpython-d39bd5345af82e3acbdc1ecb348951b05a5ed1f6.tar.gz
Remove now unnecessary explicit Unicode string literal prefixes
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 ee2e8e07..9cbbcf23 100644
--- a/git/test/test_base.py
+++ b/git/test/test_base.py
@@ -122,7 +122,7 @@ class TestBase(TestBase):
"Unicode woes, see https://github.com/gitpython-developers/GitPython/pull/519")
@with_rw_repo('0.1.6')
def test_add_unicode(self, rw_repo):
- filename = u"שלום.txt"
+ filename = "שלום.txt"
file_path = osp.join(rw_repo.working_dir, filename)