]> git.mxchange.org Git - fba.git/blobdiff - fba.py
Continued:
[fba.git] / fba.py
diff --git a/fba.py b/fba.py
index d7d40c71592bde40306191b4a8901a34a7a76477..08b29c18acf6172bc3e07785b5ecf1253842df47 100755 (executable)
--- a/fba.py
+++ b/fba.py
 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 import sys
-from fba import *
+from fba import boot
 
 # Init parser
 boot.init_parser()
 
 # Run command
-boot.run_command()
+status = boot.run_command()
 
 # Shutdown again
 boot.shutdown()
+
+# Exit with status code
+sys.exit(status)