summaryrefslogtreecommitdiff
path: root/portato.py
diff options
context:
space:
mode:
Diffstat (limited to 'portato.py')
-rwxr-xr-xportato.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/portato.py b/portato.py
index ada2699..800698a 100755
--- a/portato.py
+++ b/portato.py
@@ -19,11 +19,13 @@ import subprocess, threading
import atexit
from optparse import OptionParser, SUPPRESS_HELP
-from portato import get_listener, log
+from portato import get_listener, log, start
from portato.helper import debug, info
from portato.constants import VERSION, SU_COMMAND
def main ():
+ start() # the first thing to do :)
+
# build the parser
desc = "Portato - A Portage GUI."
usage = "%prog [options] [frontend]"