changelog.py: Convert Windows new-lines to UNIX new-lines

This commit is contained in:
Gunnar Beutner 2015-03-09 12:47:01 +01:00
parent 98b89b1d27
commit f4bf4578c0
1 changed files with 3 additions and 1 deletions

View File

@ -18,7 +18,7 @@
# * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
# ******************************************************************************/
import urllib2, json, sys
import urllib2, json, sys, string
if len(sys.argv) < 2:
print "Usage:", sys.argv[0], "<VERSION>"
@ -47,6 +47,8 @@ for field in version["custom_fields"]:
changes = field["value"]
break
changes = string.join(string.split(changes, "\r\n"), "\n")
print "### What's New in Version %s" % (version_name)
print ""
print "#### Changes"