We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78a6536 commit 2c1a362Copy full SHA for 2c1a362
Iguape/__init__.py
@@ -6,5 +6,5 @@
6
In this script, both GUIs used by the program are called and all of the backend functions and processes are defined.
7
"""
8
9
-__version__ = '1.1.3'
+__version__ = '1.1.4'
10
license = 'GNU GPL-3.0 License'
Iguape/launcher.py
@@ -14,9 +14,9 @@ def main():
14
iguape_dir = os.path.dirname(__file__)
15
os.chdir(iguape_dir)
16
try:
17
- subprocess.run(["python3", 'iguape.py'])
18
- except Exception as e:
19
subprocess.run(["python", 'iguape.py'])
+ except Exception as e:
+ subprocess.run(["python3", 'iguape.py'])
20
21
22
if __name__=='__main__':
0 commit comments