summaryrefslogtreecommitdiff
path: root/crodump.py
diff options
context:
space:
mode:
authoritsme <itsme@xs4all.nl>2021-07-13 23:26:22 +0200
committeritsme <itsme@xs4all.nl>2021-07-13 23:26:22 +0200
commitd3582ac336721b65e988f6ca1b7dd0b4310a2a6c (patch)
tree4cb531f6b499bfa05cefb554f1cc6b7b6f2b12b1 /crodump.py
parent40b8b1b16a50360f6a6cbd7a65198f0414ce98bf (diff)
added sysnum to enumrecs interfaceHEADmaster
Diffstat (limited to 'crodump.py')
-rw-r--r--crodump.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/crodump.py b/crodump.py
index 984770f..02abc80 100644
--- a/crodump.py
+++ b/crodump.py
@@ -455,7 +455,7 @@ class Database:
455 for i in range(self.nrofrecords()): 455 for i in range(self.nrofrecords()):
456 data = self.bank.readrec(i+1) 456 data = self.bank.readrec(i+1)
457 if data and data[0] == table.tableid: 457 if data and data[0] == table.tableid:
458 yield data[1:].split(b"\x1e") 458 yield i+1, data[1:].split(b"\x1e")
459 459
460 460
461 def recdump(self, args): 461 def recdump(self, args):