Skip to content

Commit 727d194

Browse files
authored
...
1 parent 3e2691d commit 727d194

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

Funz/install.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,7 @@ def install_fileModel(model_zip, force=False):
8080

8181
# reload plugins in Funz env
8282
_jclassFunz.init()
83-
global _Funz_Models
84-
_Funz_Models = installedModels()
83+
inst.Funz.Funz._Funz_Models = installedModels()
8584

8685
if not (model in installedModels()):
8786
raise Exception("Could not install model "+model+" from "+model_zip)
@@ -261,8 +260,7 @@ def install_fileDesign(design_zip, force=False):
261260

262261
# reload plugins in Funz env
263262
_jclassFunz.init()
264-
global _Funz_Designs
265-
_Funz_Designs = installedDesigns()
263+
inst.Funz.Funz._Funz_Designs = installedDesigns()
266264

267265
if not (design in installedDesigns()):
268266
raise Exception("Could not install design "+design+" from "+design_zip)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setuptools.setup(
44
name='Funz',
5-
version='1.15-1',
5+
version='1.15-2',
66
scripts=['Funz/client.py','Funz/calculator.py','Funz/install.py','Funz/inst/Funz/Funz.py'] ,
77
author="Yann Richet",
88
author_email="[email protected]",

0 commit comments

Comments
 (0)