diff options
author | Harmon <Harmon758@gmail.com> | 2020-02-25 11:04:34 -0600 |
---|---|---|
committer | Harmon <Harmon758@gmail.com> | 2020-02-25 11:04:34 -0600 |
commit | d39bd5345af82e3acbdc1ecb348951b05a5ed1f6 (patch) | |
tree | dfccb83bafd000d0704d473e1090a4158da136f9 /git/test/test_base.py | |
parent | ac286162b577c35ce855a3048c82808b30b217a8 (diff) | |
download | gitpython-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.py | 2 |
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) |