There was an error while loading. Please reload this page.
1 parent c059c6e commit 24659deCopy full SHA for 24659de
1 file changed
bugzilla/__init__.py
@@ -12,10 +12,10 @@
12
__version__ = "0.9.0"
13
version = __version__
14
15
-import logging
+from logging import getLogger
16
from xmlrpclib import Fault, ServerProxy
17
18
-log = logging.getLogger("bugzilla")
+log = getLogger("bugzilla")
19
20
21
from bugzilla.base import BugzillaBase as _BugzillaBase
@@ -42,7 +42,7 @@ def getBugzillaClassForURL(url):
42
log.info("Using RHBugzilla for URL containing bugzilla.redhat.com")
43
return RHBugzilla
44
if "bugzilla.novell.com" in url:
45
- logging.info("Using NovellBugzilla for URL containing novell.com")
+ log.info("Using NovellBugzilla for URL containing novell.com")
46
return NovellBugzilla
47
48
# Check for a Red Hat extension
0 commit comments