diff options
author | Scott Maxwell <scott@codecobblers.com> | 2013-11-01 01:02:50 -0700 |
---|---|---|
committer | Scott Maxwell <scott@codecobblers.com> | 2013-11-01 01:02:50 -0700 |
commit | 201a61d66dd3c788abb67741de975a56f7df2061 (patch) | |
tree | 60f07b1ef6a1af6bfab45345ef37705cd50251dc /tests | |
parent | fee18142a58dce099dd7a9bcb93d124a539cc55c (diff) |
Have to use u'' format in test_sftp so this test won't run on Py3.2 unless we find a solution
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/test_sftp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_sftp.py b/tests/test_sftp.py index 2b434f8e..460e04cf 100755 --- a/tests/test_sftp.py +++ b/tests/test_sftp.py @@ -72,7 +72,7 @@ FOLDER = os.environ.get('TEST_FOLDER', 'temp-testing000') sftp = None tc = None g_big_file_test = True -unicode_folder = u('\u00fcnic\u00f8de') +unicode_folder = u'\u00fcnic\u00f8de' def get_sftp(): global sftp |