summaryrefslogtreecommitdiffstats
path: root/parsers/caves.py
diff options
context:
space:
mode:
authorMartin <devnull@localhost>2012-08-14 22:51:15 +0200
committerMartin <devnull@localhost>2012-08-14 22:51:15 +0200
commit25a73c4ab7a23d87621c0d90b9c26c69361e8a6a (patch)
tree6290339cc911e049d74bd061b6f9f810482af15e /parsers/caves.py
parent28047277f1fb0679c3b94bb5a14d2384a94cc27f (diff)
downloadtroggle-25a73c4ab7a23d87621c0d90b9c26c69361e8a6a.tar.gz
troggle-25a73c4ab7a23d87621c0d90b9c26c69361e8a6a.tar.bz2
troggle-25a73c4ab7a23d87621c0d90b9c26c69361e8a6a.zip
Bug fixing of cave and entrance forms removal of slugs
Diffstat (limited to 'parsers/caves.py')
-rw-r--r--parsers/caves.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/parsers/caves.py b/parsers/caves.py
index 1c8bf2f..d92483d 100644
--- a/parsers/caves.py
+++ b/parsers/caves.py
@@ -8,6 +8,8 @@ import re
def readcaves():
newArea = models.Area(short_name = "1623", parent = None)
newArea.save()
+ newArea = models.Area(short_name = "1626", parent = None)
+ newArea.save()
print "Entrances"
for filename in os.walk(settings.ENTRANCEDESCRIPTIONS).next()[2]: #Should be a better way of getting a list of files
readentrance(filename)