mirror of https://github.com/Icinga/icinga2.git
changelog.py: Convert Windows new-lines to UNIX new-lines
This commit is contained in:
parent
98b89b1d27
commit
f4bf4578c0
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue