(ren_dict, title)
| 94 | return |
| 95 | |
| 96 | def printrenames(ren_dict, title): |
| 97 | if len(ren_dict) > 0: |
| 98 | print('\nRenamed ' + title + ':') |
| 99 | for id in sorted(ren_dict): |
| 100 | couple = ren_dict[id] |
| 101 | print((" \"{0}\": \"{1}\",".format(couple[0], couple[1]))) |
| 102 | |
| 103 | groupcats = {} |
| 104 | def getgroupcat(grp): |