Skip to content

Commit ae535ea

Browse files
authored
Merge pull request #6
Fix for v1.9.0 by. w-e-w
2 parents 3c867ab + dc2c50f commit ae535ea

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__pycache__/

scripts/res_xyz.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
def grid_reference():
55
for data in scripts.scripts_data:
6-
if data.script_class.__module__ == 'xyz_grid.py' and hasattr(data, "module"):
6+
if data.script_class.__module__ in ('scripts.xyz_grid', 'xyz_grid.py') and hasattr(data, "module"):
77
return data.module
88

99
raise SystemError("Could not find X/Y/Z Plot...")

0 commit comments

Comments
 (0)