[Daemon] Fix showing translation warning messages

Disable the warn_msg in daemon_entry since the argparse option are all
marked for translation and warnings are being output. The original
intent of this warn_msg was to identify anything in core code that was
incorrectly marked for translation.
This commit is contained in:
Calum Lind 2019-05-17 10:32:07 +01:00
parent fd20addead
commit 2ca683e8fe

View file

@ -78,7 +78,7 @@ def start_daemon(skip_start=False):
deluge.core.daemon.Daemon: A new daemon object
"""
setup_mock_translation(warn_msg=True)
setup_mock_translation()
# Setup the argument parser
parser = ArgParserBase()