remove logging call
This commit is contained in:
parent
7c250c6f79
commit
7672e1b47a
1 changed files with 0 additions and 2 deletions
|
@ -20,7 +20,6 @@
|
||||||
|
|
||||||
import gettext
|
import gettext
|
||||||
from functools import wraps
|
from functools import wraps
|
||||||
import logging
|
|
||||||
|
|
||||||
from locales import available_locales
|
from locales import available_locales
|
||||||
from database import db_session
|
from database import db_session
|
||||||
|
@ -94,7 +93,6 @@ def __(singular, plural=None, n=1, multi=False):
|
||||||
else:
|
else:
|
||||||
for locale in _.locale_stack:
|
for locale in _.locale_stack:
|
||||||
translation = _(singular, plural, n, locale)
|
translation = _(singular, plural, n, locale)
|
||||||
logging.info(translation)
|
|
||||||
|
|
||||||
if translation not in translations:
|
if translation not in translations:
|
||||||
translations.append(translation)
|
translations.append(translation)
|
||||||
|
|
Loading…
Reference in a new issue