diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-10-27 22:13:32 +0300 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-10-27 22:13:32 +0300 |
commit | 97bb1a3ad1b5adcc24c73d7c38644bc4e553f366 (patch) | |
tree | 11ab1d0b0453b56f18959aee49023128648bd535 | |
parent | 788de853dc67e3ae3562b2957436df3bd2eec266 (diff) | |
download | troggle-97bb1a3ad1b5adcc24c73d7c38644bc4e553f366.tar.gz troggle-97bb1a3ad1b5adcc24c73d7c38644bc4e553f366.tar.bz2 troggle-97bb1a3ad1b5adcc24c73d7c38644bc4e553f366.zip |
comment corrections
-rw-r--r-- | parsers/survex.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/parsers/survex.py b/parsers/survex.py index 437f837..1f38f96 100644 --- a/parsers/survex.py +++ b/parsers/survex.py @@ -980,8 +980,6 @@ class LoadingSurvex: def LoadSurvexRef(self, survexblock, args): """Interpret the *ref record, and all the many variants - the 'letter' was X for electronic wallets but we no longer do this. So the code - that handles 'letter' can be removed. """ # print(self.insp+ "*REF ---- '"+ args +"'") url = get_offending_filename(survexblock.survexfile.path) @@ -1050,7 +1048,7 @@ class LoadingSurvex: else: survexblock.scanswallet = manywallets[0] # this is a ForeignKey field survexblock.save() - # This is where we should check that the wallet JSON contains a link to the survexfile + # This is where we chould check that the wallet JSON contains a link to the survexfile # and that the JSON date and walletdate are set correctly to the survexblock date. set_walletdate(survexblock.scanswallet) else: |