]> git.phdru.name Git - m_lib.git/commitdiff
Fix a bug in getting default_encoding
authorOleg Broytman <phd@phdru.name>
Wed, 30 Mar 2016 17:41:31 +0000 (20:41 +0300)
committerOleg Broytman <phd@phdru.name>
Wed, 30 Mar 2016 17:41:31 +0000 (20:41 +0300)
Release version 2.1.2.

m_lib/defenc.py
setup.py

index 01d899058295b87c25a91d786fda45ac1a94b40e..edcd80be4b691d94eb51d30b43f4e8c643d3a621 100755 (executable)
@@ -1,7 +1,7 @@
 #! /usr/bin/env python
 """Get default encoding
 
-   Written by Oleg Broytman. Copyright (C) 2007, 2008 PhiloSoft Design.
+   Written by Oleg Broytman. Copyright (C) 2007-2016 PhiloSoft Design.
 """
 
 __all__ = ['default_encoding']
@@ -22,7 +22,7 @@ if use_locale:
       print >>sys.stderr, "WARNING:", err
       lcAll = []
 
-   if len(lcAll) == 2:
+   if len(lcAll) == 2 and lcAll[0] is not None:
       default_encoding = lcAll[1]
    else:
       try:
index 4b66dbf6f3cec86e5e07fe3d1be64b9850aedf51..96099693151c63d315256696294b0a0036c5bfdc 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -18,9 +18,9 @@ if is_setuptools:
         }
 
 setup(name = "m_lib",
-    version = "2.1.1",
+    version = "2.1.2",
     description = "Broytman Library for Python",
-    long_description = "Broytman Library for Python, Copyright (C) 1996-2013 PhiloSoft Design",
+    long_description = "Broytman Library for Python, Copyright (C) 1996-2016 PhiloSoft Design",
     author = "Oleg Broytman",
     author_email = "phd@phdru.name",
     url = "http://phdru.name/Software/Python/#m_lib",