diff service/main.py @ 318:834d5c267219

core: fixed state encoding + PLUGIN_EXT on Android following Python 3 port
author Goffi <goffi@goffi.org>
date Wed, 16 Oct 2019 08:50:47 +0200
parents cd99f70ea592
children 38d763febed6
line wrap: on
line diff
--- a/service/main.py	Wed Oct 16 08:50:34 2019 +0200
+++ b/service/main.py	Wed Oct 16 08:50:47 2019 +0200
@@ -33,7 +33,7 @@
     # sys.platform is "linux" on android by default
     # so we change it to allow backend to detect android
     sys.platform = "android"
-    C.PLUGIN_EXT = "pyo"
+    C.PLUGIN_EXT = "pyc"
 from sat.core import sat_main
 from twisted.internet import reactor