We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7af9614 commit 22e5439Copy full SHA for 22e5439
1 file changed
gitstats
@@ -1445,6 +1445,8 @@ class GitStats:
1445
raise KeyError('no such key "%s" in config' % key)
1446
if isinstance(conf[key], int):
1447
conf[key] = int(value)
1448
+ elif isinstance(conf[key], list):
1449
+ conf[key].append(value)
1450
else:
1451
conf[key] = value
1452
elif o in ('-h', '--help'):
@@ -1509,6 +1511,3 @@ class GitStats:
1509
1511
if __name__=='__main__':
1510
1512
g = GitStats()
1513
g.run(sys.argv[1:])
-
1514
-mon@open-freelancer:~/dev/go/src/openfreelancers$
0 commit comments