]> git.armaanb.net Git - lightcards.git/blobdiff - lightcards/__main__.py
Fix pickle implementation
[lightcards.git] / lightcards / __main__.py
index 283493de90a082b07451530f5564344d3f044667..82a361ea11d496aceee0c217602d22824e3f1ec4 100644 (file)
@@ -1,4 +1,4 @@
 import sys
-import lightcards.lightcards
+from lightcards.runner import main
 
-lightcards.lightcards.main(sys.argv)
+sys.exit(main())