From 60b87d49f39f88a18da1a6518aca5dc9c2713c9e Mon Sep 17 00:00:00 2001 From: calvin Date: Sun, 5 Sep 2004 20:52:13 +0000 Subject: [PATCH] i18n init git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@1738 e7d03fd6-7b0d-0410-9947-9c21f3af8025 --- linkchecker | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/linkchecker b/linkchecker index 8a21a61a..bd44e704 100755 --- a/linkchecker +++ b/linkchecker @@ -35,13 +35,15 @@ default_timeout = 60 socket.setdefaulttimeout(default_timeout) import linkcheck +# initialize i18n +linkcheck.init_i18n() import linkcheck.log import linkcheck.optcomplete import linkcheck.checker import linkcheck.checker.cache import linkcheck.checker.consumer import linkcheck.configuration -from linkcheck.i18n import _ + # default profiling filename _profile = "linkchecker.prof" @@ -352,11 +354,6 @@ optparser.add_option_group(group) ################# auto completion ##################### linkcheck.optcomplete.autocomplete(optparser) -if "--wischiwaschi" in sys.argv: - import linkcheck.util1 - linkcheck.util1.abbuzze() - sys.exit(0) - # read and parser command line options and arguments (options, args) = optparser.parse_args()