diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-07-29 11:49:32 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-07-29 11:49:51 +0200 |
commit | 63e0bb858f19eaacc94591f57a47ddaff248ffc0 (patch) | |
tree | e11e59c7a56eca9b5f59bee8a50e843596bd5712 | |
parent | 2889a248d2bee7ddf01257bc356c95c1dc03c15d (diff) | |
download | Chimère-63e0bb858f19eaacc94591f57a47ddaff248ffc0.tar.bz2 Chimère-63e0bb858f19eaacc94591f57a47ddaff248ffc0.zip |
v3 to v2 export: remove description from route
-rw-r--r-- | chimere/management/commands/v3_to_v2_routes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chimere/management/commands/v3_to_v2_routes.py b/chimere/management/commands/v3_to_v2_routes.py index 974c6ac..ecbda6a 100644 --- a/chimere/management/commands/v3_to_v2_routes.py +++ b/chimere/management/commands/v3_to_v2_routes.py @@ -13,7 +13,7 @@ class Command(BaseCommand): new_routes += get_data('RouteFile') new_routes += get_data('Route', filters=('weight', 'normalised_weight', - 'color')) + 'color', 'description')) new_routes += get_data('Route_categories') res = json.dumps(new_routes) |