diff options
author | Colin Noga <Tempus@chronometry.ca> | 2012-08-28 13:02:14 -0500 |
---|---|---|
committer | Colin Noga <Tempus@chronometry.ca> | 2012-08-28 13:02:14 -0500 |
commit | fc9ba20ea4446049ebf68e1e9b9dfd77352cedd2 (patch) | |
tree | ade73af132c8d413ef5e93d97d55c0781787f4ed /src/main.py | |
parent | 03cd34aba4e4184142c025fe7cdcb9e4e0a5d7ab (diff) | |
download | koopatlas-fc9ba20ea4446049ebf68e1e9b9dfd77352cedd2.tar.gz koopatlas-fc9ba20ea4446049ebf68e1e9b9dfd77352cedd2.zip |
export batch fixed, checkbox for secret added
Diffstat (limited to '')
-rw-r--r-- | src/main.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/main.py b/src/main.py index f417d94..951e927 100644 --- a/src/main.py +++ b/src/main.py @@ -76,9 +76,15 @@ class KP: tsInfo['hash'] = newHash from tileset import KPTileset - print "Loading set: %s" % name + + import time + b = time.clock() + cls.loadedTilesets[name] = KPTileset.loadFromArc(data) - + + e = time.clock() + print "Loading set: {0} in {1}".format(name, e-b) + @classmethod def tileset(cls, name): |