Skip to content

Commit

Permalink
Fix plugin loading issue causing sys test failure. Refs #970
Browse files Browse the repository at this point in the history
  • Loading branch information
martyngigg committed Apr 18, 2013
1 parent 6278c49 commit e4780a8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def contains_newapi_algorithm(filename):
if 'registerPyAlgorithm' in line:
alg_found = False
break
if 'AlgorithmFactory.subscribe' in line or 'registerAlgorithm': # registerAlgorithm deprecated
if 'AlgorithmFactory.subscribe' in line or 'registerAlgorithm' in line: # registerAlgorithm deprecated
alg_found = True
break
file.close()
Expand Down

0 comments on commit e4780a8

Please sign in to comment.