2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2024-12-02 06:41:55 +00:00

remove unused import

This commit is contained in:
Philip Sargent 2020-06-06 15:56:32 +01:00
parent 15d4defe0e
commit e0d8df0a79
2 changed files with 3 additions and 2 deletions

View File

@ -380,7 +380,7 @@ def usage():
QMs - read in the QM csv files (older caves only)
scans - the survey scans in all the wallets (must run before survex)
survex - read in the survex files - all the survex blocks but not the x/y/z positions
survexpos - just the x/y/z Pos out of the survex files
survexpos - just the x/y/z Pos out of the survex files - Never used.
tunnel - read in the Tunnel files - which scans the survey scans too
@ -436,7 +436,7 @@ if __name__ == "__main__":
jq.enq("logbooks",import_logbooks)
jq.enq("QMs",import_QMs)
jq.enq("survexblks",import_survexblks)
jq.enq("survexpos",import_survexpos)
#jq.enq("survexpos",import_survexpos)
jq.enq("tunnel",import_tunnelfiles)
elif "scans" in sys.argv:
jq.enq("scans",import_surveyscans)

1
parsers/caves.py Normal file → Executable file
View File

@ -170,6 +170,7 @@ def readcave(filename):
def getXML(text, itemname, minItems = 1, maxItems = None, printwarnings = True, context = ""):
# this next line is where it crashes horribly if a stray umlaut creeps in. Will fix itself in python3
items = re.findall("<%(itemname)s>(.*?)</%(itemname)s>" % {"itemname": itemname}, text, re.S)
if len(items) < minItems and printwarnings:
message = " ! %(count)i %(itemname)s found, at least %(min)i expected" % {"count": len(items),