1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

import customgame.

This commit is contained in:
Shlomi Fish 2012-11-25 18:58:04 +02:00
parent fe8c355a43
commit 56f8b04cad
2 changed files with 3 additions and 3 deletions

View file

@ -29,7 +29,7 @@ from pysollib.stack import *
from pysollib.layout import Layout
from wizardpresets import presets
from pysollib.mygettext import _, n_
# ************************************************************************
# *
# ************************************************************************
@ -348,7 +348,7 @@ WizardWidgets = (
def write_game(app, game=None):
import customgame # for py2exe
import pysollib.customgame # for py2exe
if game is None:
# new game

View file

@ -1,6 +1,6 @@
#!/usr/bin/env python
import os.path
for module_name in ['pysollib.app', 'pysollib.acard', 'pysollib.actions', 'pysollib.hint', 'pysollib.layout', 'pysollib.mfxutil', 'pysollib.move', 'pysollib.options', 'pysollib.pysolrandom', 'pysollib.resource', 'pysollib.settings', 'pysollib.stack', 'pysollib.stats', 'pysollib.mygettext', 'pysollib.wizardpresets', 'pysollib.util', 'pysollib.gamedb', 'pysollib.configobj.configobj', 'pysollib.configobj.validate', 'pysollib.game', ]:
for module_name in ['pysollib.app', 'pysollib.acard', 'pysollib.actions', 'pysollib.customgame', 'pysollib.hint', 'pysollib.layout', 'pysollib.mfxutil', 'pysollib.move', 'pysollib.options', 'pysollib.pysolrandom', 'pysollib.resource', 'pysollib.settings', 'pysollib.stack', 'pysollib.stats', 'pysollib.mygettext', 'pysollib.wizardpresets', 'pysollib.util', 'pysollib.gamedb', 'pysollib.configobj.configobj', 'pysollib.configobj.validate', 'pysollib.game', ]:
open(os.path.join(".", "tests", "individually-importing", "import_" + module_name + ".py"), 'w').write('''#!/usr/bin/env python
import sys
sys.path.append("./tests/lib")