File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -627,14 +627,14 @@ def active(self):
627
627
-----
628
628
This method differentiates between commands based on analysis_only or
629
629
the software type. The commands that are not for analysis (processing)
630
- and are not from an artifact definition software will return as active
630
+ and are from an artifact definition software will return as active
631
631
if they have the same name than a command that is active; this helps
632
632
for situations where the processing plugins are updated but some
633
633
commands didn't change its version.
634
634
"""
635
635
with qdb .sql_connection .TRN :
636
636
cmd_type = self .software .type
637
- if self .analysis_only or cmd_type ! = 'artifact definition' :
637
+ if self .analysis_only or cmd_type = = 'artifact definition' :
638
638
sql = """SELECT active
639
639
FROM qiita.software_command
640
640
WHERE command_id = %s"""
You can’t perform that action at this time.
0 commit comments