diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2024-07-14 13:29:21 +0200 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2024-07-14 13:29:21 +0200 |
commit | f4c25ba1638917f13e007fee34e5c76acca654e4 (patch) | |
tree | a91c7a3aeff9c5592a5ee2f0bcccb5d389ac85f1 /parsers/caves.py | |
parent | 1a5e6167fd4e8ea496b044958c3e366d4ef6a5fb (diff) | |
download | troggle-f4c25ba1638917f13e007fee34e5c76acca654e4.tar.gz troggle-f4c25ba1638917f13e007fee34e5c76acca654e4.tar.bz2 troggle-f4c25ba1638917f13e007fee34e5c76acca654e4.zip |
bugfix
Diffstat (limited to 'parsers/caves.py')
-rw-r--r-- | parsers/caves.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/parsers/caves.py b/parsers/caves.py index 0a5f2b2..d2327e0 100644 --- a/parsers/caves.py +++ b/parsers/caves.py @@ -638,6 +638,7 @@ def read_cave(filename, mvf=None, cave=None): What is Class CaveAndEntrance for? It was to allow mandy<=>many relationship between caves and entrances, but now we insist only one Cave for any Entrance, so this Class is reduncdant and should be removed.. """ + c = cave for e in entrances: eslug = getXML(e, "entranceslug", maxItems=1, context=context)[0] |