From fe58a20450b2bcb757cad27cc81522050b511300 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20=27Necoro=27=20Neumann?= Date: Thu, 13 Aug 2009 19:28:52 +0200 Subject: Make epydoc happy --- portato/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'portato/__init__.py') diff --git a/portato/__init__.py b/portato/__init__.py index 653329c..3343e24 100644 --- a/portato/__init__.py +++ b/portato/__init__.py @@ -18,7 +18,7 @@ import subprocess, threading import atexit from optparse import OptionParser, SUPPRESS_HELP -from . import log +from .log import start as logstart from .constants import LOCALE_DIR, APP, VERSION from .su import detect_su_command from .helper import debug, info, error @@ -61,7 +61,7 @@ def start(): gettext.install(APP, LOCALE_DIR, unicode = True) # start logging - log.start(file=False) + logstart(file=False) # run parser (options, args) = get_parser().parse_args() @@ -70,7 +70,7 @@ def start(): atexit.register(get_listener().close) if options.nofork or os.getuid() == 0: # start GUI - log.start(file = True) # start logging to file + logstart(file = True) # start logging to file from .gui import run info("%s v. %s", _("Starting Portato"), VERSION) -- cgit v1.2.3