diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-02-01 23:43:05 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-02-01 23:43:05 +0000 |
commit | 9d1c0ac395a5509d577cb030148e335b1ee2b5c8 (patch) | |
tree | f8eae57a56d9f54709d8df78c167afcce4c5fcf7 /core/models/wallets.py | |
parent | c7d88077ec06fd7141d2c90998c1547e946702ce (diff) | |
download | troggle-9d1c0ac395a5509d577cb030148e335b1ee2b5c8.tar.gz troggle-9d1c0ac395a5509d577cb030148e335b1ee2b5c8.tar.bz2 troggle-9d1c0ac395a5509d577cb030148e335b1ee2b5c8.zip |
Setting wallet dates earlier in the import process
Diffstat (limited to 'core/models/wallets.py')
-rw-r--r-- | core/models/wallets.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/models/wallets.py b/core/models/wallets.py index 7c0dea4..a90a737 100644 --- a/core/models/wallets.py +++ b/core/models/wallets.py @@ -99,7 +99,7 @@ class Wallet(models.Model): # Yes this is horribly, horribly inefficient, esp. for a page that have date, people and cave in it def date(self): - """Reads all the JSON data just to get the JSNON date.""" + """Reads all the JSON data just to get the JSON date.""" if self.walletdate: return self.walletdate if not self.get_json(): |