I've made a program which launches another python program using os.startfile().
I wanted to have this as two exe files, launching the second by using subprocess.call() instead, in 1 build folder but I don't know how to do this.
I tried making a setup file for both, creating 2 build folders and then copying 1 of the exe files into the other's build folder but got this:
Traceback (most recent call last):
File "C:\Python34\lib\site-packages\cx_Freeze\initscripts\__startup__.py", line 12,
in <module> __import__(name + "__init__")
ImportError: No module named 'menu_record__init__'
Have any ideas?