Frozen mode message type static
- I can't get the dynamic loading to work on OSX in frozen mode - I think that if someone wants to build a frozen executable with custom messagetypes modules, he can edit the file - so now it lists the existing types manually (for frozen mode only)
This commit is contained in:
parent
511b89ebbe
commit
484d4abb3c
|
@ -28,15 +28,11 @@ def constructObject(data):
|
||||||
else:
|
else:
|
||||||
return returnObj
|
return returnObj
|
||||||
|
|
||||||
mods = []
|
|
||||||
if paths.frozen is not None:
|
if paths.frozen is not None:
|
||||||
with open(path.join(path.dirname(path.dirname(__file__)), 'messagetypes.txt'), 'rt') as f:
|
import messagetypes.message
|
||||||
for m in f.readlines():
|
import messagetypes.vote
|
||||||
mods.append(m.rstrip())
|
|
||||||
else:
|
else:
|
||||||
mods = listdir(path.dirname(__file__))
|
for mod in listdir(path.dirname(__file__)):
|
||||||
|
|
||||||
for mod in mods:
|
|
||||||
if mod == "__init__.py":
|
if mod == "__init__.py":
|
||||||
continue
|
continue
|
||||||
splitted = path.splitext(mod)
|
splitted = path.splitext(mod)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user