Skip to content

Commit c8269bf

Browse files
committed
Rename script language to Python (pyimagej)
Closes #14
1 parent 4bb7d15 commit c8269bf

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/main/java/org/scijava/plugins/scripting/python/PythonScriptLanguage.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131

3232
import java.util.Arrays;
3333
import java.util.List;
34+
3435
import javax.script.ScriptEngine;
3536

3637
import org.scijava.Priority;
@@ -39,13 +40,13 @@
3940
import org.scijava.script.ScriptLanguage;
4041

4142
/**
42-
* An adapter for Python (scyjava) to the SciJava scripting interface.
43+
* An adapter for Python (pyimagej) to the SciJava scripting interface.
4344
*
4445
* @author Curtis Rueden
4546
* @author Karl Duderstadt
4647
* @see ScriptEngine
4748
*/
48-
@Plugin(type = ScriptLanguage.class, name = "Python (scyjava)", priority = Priority.VERY_LOW)
49+
@Plugin(type = ScriptLanguage.class, name = "Python (pyimagej)", priority = Priority.VERY_LOW)
4950
public class PythonScriptLanguage extends AbstractScriptLanguage {
5051

5152
@Override

src/main/java/org/scijava/plugins/scripting/python/PythonScriptSyntaxHighlighter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
*
3939
* @author Karl Duderstadt
4040
*/
41-
@Plugin(type = SyntaxHighlighter.class, name = "python-(scyjava)")
41+
@Plugin(type = SyntaxHighlighter.class, name = "python-(pyimagej)")
4242
public class PythonScriptSyntaxHighlighter extends PythonTokenMaker implements
4343
SyntaxHighlighter
4444
{

0 commit comments

Comments
 (0)