Skip to content

Commit 2c1a362

Browse files
committed
Fix launcher bug and change version
1 parent 78a6536 commit 2c1a362

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Iguape/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
In this script, both GUIs used by the program are called and all of the backend functions and processes are defined.
77
"""
88

9-
__version__ = '1.1.3'
9+
__version__ = '1.1.4'
1010
license = 'GNU GPL-3.0 License'

Iguape/launcher.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ def main():
1414
iguape_dir = os.path.dirname(__file__)
1515
os.chdir(iguape_dir)
1616
try:
17-
subprocess.run(["python3", 'iguape.py'])
18-
except Exception as e:
1917
subprocess.run(["python", 'iguape.py'])
18+
except Exception as e:
19+
subprocess.run(["python3", 'iguape.py'])
2020

2121

2222
if __name__=='__main__':

0 commit comments

Comments
 (0)