diff options
author | H. P. <harald.p.@xmart.de> | 2018-09-28 15:19:27 +0200 |
---|---|---|
committer | H. P. <harald.p.@xmart.de> | 2018-09-28 15:19:27 +0200 |
commit | 6589dc659146a12296b8cedb39bda2be3d38b8c3 (patch) | |
tree | 77256f1bc68a41227db27a0154fb08abd7801971 | |
parent | 15b322c70a5661436ebbc8774d8e5fcffaae4c7a (diff) | |
download | timewarrior-holidays-6589dc659146a12296b8cedb39bda2be3d38b8c3.tar.bz2 |
bugfix: removal of limitation to first list member of args.locale
-rwxr-xr-x | refresh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -110,7 +110,7 @@ def hparse(lines, locode, year): def main(args): if args.locale != [] and args.locale != None: - locode = str(args.locale[0]) + locode = args.locale else: locode = ["de-DE"] if args.year != None and args.year != []: |