Skip to content

Commit

Permalink
Fix test for rel parameter style process launches
Browse files Browse the repository at this point in the history
  • Loading branch information
oldpatricka committed May 30, 2012
1 parent 6736a7f commit b3a00cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eeagent/execute.py
Expand Up @@ -288,7 +288,7 @@ def run(self, name, parameters):
rel_file_str = "rel"
rel_params = ["name", "module", "cls"]

if rel_file_str not in parameters and not all(x in rel_params for x in parameters):
if rel_file_str not in parameters and not all(x in parameters for x in rel_params):
raise EEAgentParameterException("a rel or name, module, class, must be in the parameters for a pyon run: %s" % parameters)
rel_file_contents = parameters.get(rel_file_str)
if not rel_file_contents:
Expand Down

0 comments on commit b3a00cd

Please sign in to comment.