diff options
| author | root <root@kremium> | 2011-12-07 12:47:33 +0100 | 
|---|---|---|
| committer | root <root@kremium> | 2011-12-07 12:47:33 +0100 | 
| commit | 3d62168ca740e9e71bafe1834cbde1f98a5a87a9 (patch) | |
| tree | 007273c9316b5ee90c62852c5685827f3090a242 | |
| parent | 9b77caeac2409a70010c22b12f843b1dcc29cfb7 (diff) | |
//assets: truth2json - fix error message
| -rwxr-xr-x | assets/bin/truth2json | 2 | 
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] | 
