Mercurial > hg > config
changeset 880:cd1ebc68739f
-> python3
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Tue, 06 Aug 2019 14:01:21 -0700 |
parents | 79b52aec477e |
children | 4ebb6aff9d67 |
files | python/dictify.py |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/python/dictify.py Fri May 24 15:34:11 2019 -0700 +++ b/python/dictify.py Tue Aug 06 14:01:21 2019 -0700 @@ -4,9 +4,9 @@ def dictify(string): lines = [ i.strip() for i in string.split('\n') if i.strip() ] - return dict([i.split(divider,1) for i in lines + return dict([i.split(divider,1) for i in lines if len(i.split(divider,1)) == 2]) - + if __name__ == '__main__': import sys feh = sys.stdin.read() @@ -14,6 +14,6 @@ if sys.argv[1:]: for i in sys.argv[1:]: if thedict.has_key(i): - print thedict[i] + print (thedict[i]) else: - print thedict + print (thedict)