Skip to content

Commit b7e32fb

Browse files
committed
Replace UTF-8 dash with an ASCII minus
Using UTF-8 is still shaky in the Jython 2.7 environment, so if there is no strong need for it, simply stick to ASCII.
1 parent bf7fd7d commit b7e32fb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/imcflibs/imagej/misc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -728,7 +728,7 @@ def save_script_parameters(destination, save_file_name="script_parameters.txt"):
728728
# Get the ScriptModule object from globals made by Fiji
729729
module = globals().get("org.scijava.script.ScriptModule")
730730
if module is None:
731-
print("No ScriptModule found skipping saving script parameters.")
731+
print("No ScriptModule found - skipping saving script parameters.")
732732
return
733733

734734
destination = str(destination)

0 commit comments

Comments
 (0)