Lowercase initial word in some log messages.
[hooke.git] / hooke / ui / __init__.py
index 774a1511e10c2c4c3dc2665437b96feeb816c7b3..02e91513238b299d65790799a96bff330b9d4104 100644 (file)
@@ -20,6 +20,7 @@
 """
 
 import ConfigParser as configparser
+import logging
 
 from .. import version
 from ..config import Setting
@@ -28,8 +29,7 @@ from ..util.pluggable import IsSubclass, construct_odict
 try:
     from ..license import short_license
 except ImportError, e:
-    import logging
-    logging.warn('Could not load short_license from hooke.license')
+    logging.warn('could not load short_license from hooke.license')
     from .. import __license__
     def short_license(extra_info, **kwargs):
         return __license__