summaryrefslogtreecommitdiff
path: root/src/main.py
diff options
context:
space:
mode:
authorTreeki <treeki@gmail.com>2012-08-29 19:40:50 +0200
committerTreeki <treeki@gmail.com>2012-08-29 19:40:50 +0200
commit7e177703c0380ebf9d6afe9f27df4db24903d6ad (patch)
tree088c0237035b4cc684150e295a5412badf757aec /src/main.py
parenta0fb27c3f890aec576e09754b2e008459956e1f7 (diff)
parentb7ae37e17b8704a6ba3779625c65d1bb05bec251 (diff)
downloadkoopatlas-7e177703c0380ebf9d6afe9f27df4db24903d6ad.tar.gz
koopatlas-7e177703c0380ebf9d6afe9f27df4db24903d6ad.zip
Merge branch 'master' of tsn:Koopatlas ARGH
Diffstat (limited to '')
-rw-r--r--src/main.py10
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):