Fix LOGGER -> _LOGGER typo
authorW. Trevor King <wking@drexel.edu>
Thu, 1 Jul 2010 04:36:56 +0000 (00:36 -0400)
committerW. Trevor King <wking@drexel.edu>
Thu, 1 Jul 2010 04:36:56 +0000 (00:36 -0400)
sitecore/__init__.py

index 63fc6a2b5252bd9f67f8dbf8090754a327284fcf..0317541b7c6fda8fd7746f09143907661c3954fc 100755 (executable)
@@ -43,7 +43,7 @@ _LOGGER = None
 def get_logger(verbose=0):
     global _LOGGER
     if _LOGGER != None:
-        return LOGGER
+        return _LOGGER
     verbosities = [  # in order of decreasing severity
         logging.CRITICAL,
         logging.ERROR,