equal
deleted
inserted
replaced
56 data.append((so, lo, desc)) |
56 data.append((so, lo, desc)) |
57 |
57 |
58 rst = minirst.maketable(data, 1) |
58 rst = minirst.maketable(data, 1) |
59 |
59 |
60 if multioccur: |
60 if multioccur: |
61 rst += _("\n[+] marked option can be specified multiple times\n") |
61 rst.append(_("\n[+] marked option can be specified multiple times\n")) |
62 |
62 |
63 return rst |
63 return ''.join(rst) |
64 |
64 |
65 # list all option lists |
65 # list all option lists |
66 def opttext(optlist, width, verbose): |
66 def opttext(optlist, width, verbose): |
67 rst = '' |
67 rst = '' |
68 if not optlist: |
68 if not optlist: |