Skip to content

Commit

Permalink
Remove import-time logging calls
Browse files Browse the repository at this point in the history
  • Loading branch information
jleclanche committed Aug 12, 2015
1 parent f6fe21f commit d168779
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions translate/storage/po.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,10 @@

if platform.python_implementation() == "CPython":
if usecpo == "1":
logging.info("Using cPO")
from translate.storage.cpo import * # pylint: disable=W0401,W0614
elif usecpo == "2":
logging.info("Using new fPO")
from translate.storage.fpo import * # pylint: disable=W0401,W0614
else:
logging.info("Using Python PO")
from translate.storage.pypo import * # pylint: disable=W0401,W0614
else:
if usecpo:
Expand Down

0 comments on commit d168779

Please sign in to comment.