diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2016-11-16 21:53:52 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2016-11-16 21:53:52 -0700 |
commit | 375e90dccd32bf5d4308766d635d35734c627e76 (patch) | |
tree | 59aacf97137b8bb508725db5f9fad352a525c713 /pavement.py | |
parent | a80f97561217c926a80aab3e3106732e0985ec1c (diff) | |
download | numpy-375e90dccd32bf5d4308766d635d35734c627e76.tar.gz |
BUG: Fix pavement.py write_release_task.
Correct indentation of commands that should be in an open file context.
Diffstat (limited to 'pavement.py')
-rw-r--r-- | pavement.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pavement.py b/pavement.py index a6072a997..5fc936788 100644 --- a/pavement.py +++ b/pavement.py @@ -601,13 +601,13 @@ MD5 ~~~ """) - 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'] |