diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2000-09-15 12:58:08 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2000-09-15 12:58:08 (GMT) |
commit | 8b7c3c0be7f51aef0026dc335d2e2f54535b4310 (patch) | |
tree | 291a90b3b2cb9fb05777b24aa25b6abf293591f8 /Lib/test | |
parent | 00ce51e38e92414bd5fb9ab6e5f439de2dd12177 (diff) | |
download | cpython-8b7c3c0be7f51aef0026dc335d2e2f54535b4310.zip cpython-8b7c3c0be7f51aef0026dc335d2e2f54535b4310.tar.gz cpython-8b7c3c0be7f51aef0026dc335d2e2f54535b4310.tar.bz2 |
For current directory use os.curdir, not ".".
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_gettext.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_gettext.py b/Lib/test/test_gettext.py index 5e61ba5..d31cac2 100644 --- a/Lib/test/test_gettext.py +++ b/Lib/test/test_gettext.py @@ -140,8 +140,8 @@ def teardown(): try: setup() - test_api_1('.', MOFILE) - test_api_2('.', MOFILE) + test_api_1(os.curdir, MOFILE) + test_api_2(os.curdir, MOFILE) finally: teardown() pass |