diff options
author | W. Trevor King <wking@drexel.edu> | 2009-06-19 11:06:59 -0400 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-06-19 11:06:59 -0400 |
commit | 3100ca2c893425c97a7c1d93acff56329f156574 (patch) | |
tree | e970efd280d071480d9b297c91d8a3e294e3d2a0 | |
parent | 07dc865218f825f61a4eb0f89d73bb7c184a6520 (diff) | |
download | bugseverywhere-3100ca2c893425c97a7c1d93acff56329f156574.tar.gz |
libbe/encoding.py
-rw-r--r-- | libbe/encoding.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbe/encoding.py b/libbe/encoding.py index 8b0ef73..7f924eb 100644 --- a/libbe/encoding.py +++ b/libbe/encoding.py @@ -23,8 +23,8 @@ import doctest def get_encoding(): """ - Guess a useful input/output/filesystem encoding... Maybe we nees - seperate encodings for input/output and filessytem? Hmm... + Guess a useful input/output/filesystem encoding... Maybe we need + seperate encodings for input/output and filesystem? Hmm... """ encoding = locale.getpreferredencoding() or sys.getdefaultencoding() if sys.platform != 'win32' or sys.version_info[:2] > (2, 3): |