Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorIlya Zverev <zverik@textual.ru>2016-06-01 18:18:11 +0300
committerIlya Zverev <zverik@textual.ru>2016-06-01 18:18:11 +0300
commit1c2f89df82ed937d130e942cfcdff76cca6cca1d (patch)
tree4ece1b21958fd654e47c17cf5b18895d086b44c3 /tools
parent16aed3d565526af313b4b1502dd1680cad7c3d31 (diff)
[booking] Fix hotels downloader
Diffstat (limited to 'tools')
-rwxr-xr-xtools/python/booking_hotels.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/python/booking_hotels.py b/tools/python/booking_hotels.py
index a0ba6d3f94..a775fa0726 100755
--- a/tools/python/booking_hotels.py
+++ b/tools/python/booking_hotels.py
@@ -106,7 +106,7 @@ def download(user, password, path):
if not hotels:
exit(1)
- allhotels.append(hotels)
+ allhotels.extend(hotels)
# If hotels in answer less then maxrows, we reach end of data.
if len(hotels) < maxrows: