I get always the following message :
is_deleted() is not defined
This is my python program. What am i doing wrong?
import dbf
tableDirsync = dbf.Table("o:/python/dirsync.dbf")
tableDirsync.open()
for dirsync in tableDirsync:
if is_deleted(dirsync):
continue
else:
print(dirsync.diri1, dirsync.diro1)
tableDirsync.close()
mainloop()