X-Git-Url: http://git.kaliko.me/?a=blobdiff_plain;f=launch;h=39fac649ba25ebdba7e8fc3e5b1a311ffd39a941;hb=808c3bab5145b16b314ab330a054284bc0811623;hp=3e88542efee5b6e7d4049479c5940e7800816129;hpb=39becab4a5cf591b1833e875c06793d97ac78659;p=mpd-sima.git diff --git a/launch b/launch index 3e88542..39fac64 100755 --- a/launch +++ b/launch @@ -3,7 +3,7 @@ """Sima """ -# standart library import +# standard library import import logging import sys @@ -86,7 +86,7 @@ def main(): logger.info('Starting...') sima = core.Sima(config) - # core plugins + # required core plugins sima.register_plugin(History) sima.register_plugin(MpdOptions) @@ -104,7 +104,7 @@ def main(): sima.foreground() except KeyboardInterrupt: logger.info('Caught KeyboardInterrupt, stopping') - #sima.shutdown() + sys.exit(0) def run():