summaryrefslogtreecommitdiff
path: root/ishtar_common/management
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2020-12-16 11:06:43 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2021-02-28 12:15:22 +0100
commit1bc958348b165fa4c3b9474384985f6047cd4e5d (patch)
tree23e06af316435efe5f33f3f9e5d304b5a54d8d2d /ishtar_common/management
parent69291c8ebc37437517537736fcdaa2936ed69dcc (diff)
downloadIshtar-1bc958348b165fa4c3b9474384985f6047cd4e5d.tar.bz2
Ishtar-1bc958348b165fa4c3b9474384985f6047cd4e5d.zip
Fix english typo
Diffstat (limited to 'ishtar_common/management')
-rw-r--r--ishtar_common/management/commands/import_insee_comm_csv.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ishtar_common/management/commands/import_insee_comm_csv.py b/ishtar_common/management/commands/import_insee_comm_csv.py
index d1a8f2084..7962efd37 100644
--- a/ishtar_common/management/commands/import_insee_comm_csv.py
+++ b/ishtar_common/management/commands/import_insee_comm_csv.py
@@ -104,11 +104,11 @@ class Command(BaseCommand):
sys.stdout.write('* {} link created\n'.format(nb_link))
sys.stdout.write('* {} limit generated\n'.format(nb_limit))
if missing:
- sys.stdout.write('* theses towns are missing:\n')
+ sys.stdout.write('* these towns are missing:\n')
for insee, name in missing:
sys.stdout.write('* {} ({})\n'.format(name, insee))
if strange:
- sys.stdout.write('* theses towns have newer version:\n')
+ sys.stdout.write('* these towns have newer version:\n')
for insee, name in strange:
sys.stdout.write('* {} ({})\n'.format(name, insee))
sys.stdout.flush()