diff options
Diffstat (limited to 'core/models')
-rw-r--r-- | core/models/survex.py | 2 | ||||
-rw-r--r-- | core/models/wallets.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/models/survex.py b/core/models/survex.py index 6e2a06f..da35336 100644 --- a/core/models/survex.py +++ b/core/models/survex.py @@ -161,7 +161,7 @@ class SurvexBlock(models.Model): date = models.DateField(blank=True, null=True) expedition = models.ForeignKey("Expedition", blank=True, null=True, on_delete=models.SET_NULL) - # if the survexfile object is deleted, then all the suvex-blocks in it should be too, + # if the survexfile object is deleted, then all the survex-blocks in it should be too, # though a block can span more than one file... survexfile = models.ForeignKey("SurvexFile", blank=True, null=True, on_delete=models.CASCADE) # survexpath = models.CharField(max_length=200, blank=True, null=True) No need for this anymore diff --git a/core/models/wallets.py b/core/models/wallets.py index 2de8f9d..3078e2d 100644 --- a/core/models/wallets.py +++ b/core/models/wallets.py @@ -283,7 +283,7 @@ class Wallet(models.Model): return None filelist = Wallet.input_to_list(jsondata["survex file"]) - #print(f"'{self} {jsondata['survex file']}' => {filelist}") + # print(f"'{self} {jsondata['survex file']}' => {filelist}") return filelist def get_fnames(self): |