libbe/encoding.py
authorW. Trevor King <wking@drexel.edu>
Fri, 19 Jun 2009 15:06:59 +0000 (11:06 -0400)
committerW. Trevor King <wking@drexel.edu>
Fri, 19 Jun 2009 15:06:59 +0000 (11:06 -0400)
libbe/encoding.py

index 8b0ef73ae6388d88f159ba4572d51e5a02cf8fa9..7f924ebb285bed098e3b62c9ef2d93c504c753e2 100644 (file)
@@ -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):