Skip to content

Commit

Permalink
Fix trailing whitespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
pdeperio authored Jul 5, 2017
1 parent 4d85d0a commit 144fd4e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cax/qsub.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,9 @@ def command_submission(command):
stderr=subprocess.STDOUT, shell=False )
stdout_value, stderr_value = execute.communicate()
stdout_value = stdout_value.decode("utf-8")
stdout_value = stdout_value.split("\n")
stdout_value = stdout_value.split("\n")
#delete script:
delete_script( sc )
delete_script( sc )

return stdout_value


0 comments on commit 144fd4e

Please sign in to comment.