Skip to content
Snippets Groups Projects
Commit 75ed4bce authored by anphi's avatar anphi
Browse files

bugfix: request parameter is of type integer and has to be checked against integers

parent 4c447913
No related branches found
No related tags found
No related merge requests found
......@@ -55,7 +55,7 @@ def main():
if c.outputdir[0]!='/':
c.outputdir=os.path.join(calledfromdir,c.outputdir)
getMARSdata(args,c)
if c.request == '0' or c.request == '2':
if c.request == 0 or c.request == 2:
prepareFLEXPART(args,c)
normalexit(c)
else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment