summaryrefslogtreecommitdiffstats
path: root/assets
diff options
context:
space:
mode:
authorroot <root@kremium>2011-12-07 12:47:33 +0100
committerroot <root@kremium>2011-12-07 12:47:33 +0100
commit3d62168ca740e9e71bafe1834cbde1f98a5a87a9 (patch)
tree007273c9316b5ee90c62852c5685827f3090a242 /assets
parent9b77caeac2409a70010c22b12f843b1dcc29cfb7 (diff)
//assets: truth2json - fix error message
Diffstat (limited to 'assets')
-rwxr-xr-xassets/bin/truth2json2
1 files changed, 1 insertions, 1 deletions
diff --git a/assets/bin/truth2json b/assets/bin/truth2json
index c1aac73c..53af7dc8 100755
--- a/assets/bin/truth2json
+++ b/assets/bin/truth2json
@@ -23,7 +23,7 @@ for line in f:
cmd = lsplit[2]
target = lsplit[3]
if cmd == "create":
- assert target not in ret, "Target '%s' already created!"
+ assert target not in ret, "Target '%s' already created!" %target
ret[target] = {}
elif cmd == "set":
key = lsplit[4]