Commit 552c3e10 authored by Commandre Benjamin's avatar Commandre Benjamin
Browse files

Correction

1 merge request!1Develop
Showing with 2 additions and 2 deletions
+2 -2
...@@ -216,7 +216,7 @@ class Processing(object): ...@@ -216,7 +216,7 @@ class Processing(object):
if len(self.out_fieldname_carto) == 4: if len(self.out_fieldname_carto) == 4:
self.tree_direction = [[0], [0], [1, 2], [1, 3]] self.tree_direction = [[0], [0], [1, 2], [1, 3]]
def i_download(self, download=True): def i_download(self, ignore_download=False):
""" """
Interface function to download archives on the website Theia Land. This function extract Interface function to download archives on the website Theia Land. This function extract
the number of downloadable image with :func:`Archive.Archive.listing`. the number of downloadable image with :func:`Archive.Archive.listing`.
...@@ -232,7 +232,7 @@ class Processing(object): ...@@ -232,7 +232,7 @@ class Processing(object):
self.check_download = Archive(self.captor_project, self.classif_year, self.path_area, folder_archive, self.w_proxy) self.check_download = Archive(self.captor_project, self.classif_year, self.path_area, folder_archive, self.w_proxy)
if download : if not ignore_download :
self.nb_avalaible_images = self.check_download.listing() self.nb_avalaible_images = self.check_download.listing()
self.check_download.download_auto(self.user, self.password) self.check_download.download_auto(self.user, self.password)
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment