Skip to content

Commit

Permalink
BUG: Fix pavement.py write_release_task.
Browse files Browse the repository at this point in the history
Correct indentation of commands that should be in an open file context.
  • Loading branch information
charris committed Nov 17, 2016
1 parent a80f975 commit 375e90d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pavement.py
Original file line number Diff line number Diff line change
Expand Up @@ -601,13 +601,13 @@ def write_release_task(options, filename='NOTES.txt'):
~~~
""")
ftarget.writelines(['%s\n' % c for c in compute_md5(idirs)])
ftarget.writelines("""
ftarget.writelines(['%s\n' % c for c in compute_md5(idirs)])
ftarget.writelines("""
SHA256
~~~~~~
""")
ftarget.writelines(['%s\n' % c for c in compute_sha256(idirs)])
ftarget.writelines(['%s\n' % c for c in compute_sha256(idirs)])

# Sign release
cmd = ['gpg', '--clearsign', '--armor']
Expand Down

0 comments on commit 375e90d

Please sign in to comment.