diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2025-01-20 14:35:09 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2025-01-20 14:35:09 +0000 |
commit | 0201281e3876b0e10684831cb6fb042cd3087b37 (patch) | |
tree | 015a21dfb1a6c280a36dc370f58deececa430c84 /parsers/people.py | |
parent | b9f9cba6724bc7a9d072f0d69205d29948e6e8a8 (diff) | |
download | troggle-0201281e3876b0e10684831cb6fb042cd3087b37.tar.gz troggle-0201281e3876b0e10684831cb6fb042cd3087b37.tar.bz2 troggle-0201281e3876b0e10684831cb6fb042cd3087b37.zip |
do not write file until git integration done
Diffstat (limited to 'parsers/people.py')
-rw-r--r-- | parsers/people.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/parsers/people.py b/parsers/people.py index 2a6666e..6719f4b 100644 --- a/parsers/people.py +++ b/parsers/people.py @@ -175,9 +175,9 @@ def load_users(): jsondict = { "registered_users": ru } encryptedfile = settings.EXPOWEB / ENCRYPTED_DIR / "encrypt.json" - with open(encryptedfile, 'w', encoding='utf-8') as json_f: - json.dump(jsondict, json_f, indent=1) - return True + # with open(encryptedfile, 'w', encoding='utf-8') as json_f: + # json.dump(jsondict, json_f, indent=1) + # return True def load_people_expos(): |