On ajoute le serial dans le mapping des baies.

This commit is contained in:
Pierre-Elliott Bécue 2015-02-01 13:27:02 +01:00
parent 03a6d1b92a
commit 3471c4fd5d
4 changed files with 7 additions and 5 deletions

View file

@ -51,8 +51,8 @@ def get_mapping(baie_name):
map = {
""" % (sys.argv[0], baie)).encode(coding))
for lun, name in map:
f.write(' %d : "%s",\n' % (lun, name))
for lun, data in map:
f.write(' %d : %r,\n' % (lun, data))
f.write("}\n")