diff options
Diffstat (limited to 'scripts/tellico2lesana')
-rwxr-xr-x | scripts/tellico2lesana | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/tellico2lesana b/scripts/tellico2lesana index 0b0ec64..6f9cc5a 100755 --- a/scripts/tellico2lesana +++ b/scripts/tellico2lesana @@ -96,10 +96,12 @@ class T2L(guacamole.Command): if flags % 2 == 1: l_type = f_type f_type = 'list' + plural = 's' else: l_type = None + plural = '' field = { - 'name': xf.attrib['name'], + 'name': xf.attrib['name'] + plural, 'type': f_type, 'help': xf.attrib['title'], } |