Issue #13374: Use Unicode filenames instead of bytes filenames

getcwdb() => getcwd()
This commit is contained in:
Victor Stinner 2011-11-09 01:13:45 +01:00
parent 62aa4d086a
commit fd9cd24a05
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ class TestUnicodeFiles(unittest.TestCase):
self.assertFalse(os.path.exists(filename2 + '.new'))
def _do_directory(self, make_name, chdir_name):
cwd = os.getcwdb()
cwd = os.getcwd()
if os.path.isdir(make_name):
rmtree(make_name)
os.mkdir(make_name)