Skip to content

Instantly share code, notes, and snippets.

@elephantum
Created September 6, 2012 11:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elephantum/3655370 to your computer and use it in GitHub Desktop.
Save elephantum/3655370 to your computer and use it in GitHub Desktop.
import sys
import csv
r = csv.reader(sys.stdin)
data = list(r)
for line in data[1:]: line[-1] += '\n\n http://jira.ent3.ru/issues/%s' % (line[0],)
w = csv.writer(sys.stdout)
w.writerows(data)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment