Refactored entry routines

This commit is contained in:
Balthasar Reuter
2018-04-17 23:55:59 +02:00
parent cb5c2d6870
commit e296d7997c
5 changed files with 84 additions and 78 deletions

View File

@@ -1,8 +1,8 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import sys, Photobooth
import sys, main
if __name__ == "__main__":
sys.exit(Photobooth.main(sys.argv))
sys.exit(main.main(sys.argv))