diff options
author | tailor <cygnus@janrain.com> | 2006-03-06 22:20:38 +0000 |
---|---|---|
committer | tailor <cygnus@janrain.com> | 2006-03-06 22:20:38 +0000 |
commit | 5a628501a51e4026622e113f19e606b80ae4466d (patch) | |
tree | cfcf8993e81181037302706e84270e44f78f8235 /admin/packagexml.py | |
parent | f1308fa3468730b5d231dc03c31af51e2c1d7e90 (diff) | |
download | php-openid-5a628501a51e4026622e113f19e606b80ae4466d.zip php-openid-5a628501a51e4026622e113f19e606b80ae4466d.tar.gz php-openid-5a628501a51e4026622e113f19e606b80ae4466d.tar.bz2 |
[project @ Fixed packagexml.py to handle release notes with leading whitespace]
Diffstat (limited to 'admin/packagexml.py')
-rw-r--r-- | admin/packagexml.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/packagexml.py b/admin/packagexml.py index 17ee8ab..e832405 100644 --- a/admin/packagexml.py +++ b/admin/packagexml.py @@ -123,7 +123,7 @@ if __name__ == "__main__": try: release_file = sys.argv[3] release_file_h = open(release_file, 'r') - release_notes = release_file_h.read() + release_notes = release_file_h.read().strip() release_file_h.close() except Exception, e: usage(sys.argv[0]) |