This commit is contained in:
zed
2017-03-27 08:55:34 +03:00
committed by Uiri
parent 87993ce14d
commit 25e40fd9c3

View File

@@ -7,6 +7,6 @@ import sys
import json
if __name__ == '__main__':
tdata = toml.loads(sys.stdin.read())
tdata = toml.loads(sys.stdin.detach().read().decode('utf-8'))
tagged = toml_test.tag(tdata)
print(json.dumps(tagged))