From 31aa1e7076a4b4a6e9167c84b45f11490ae0f5f6 Mon Sep 17 00:00:00 2001 From: Dimitris Zlatanidis Date: Sat, 20 Jun 2015 02:55:58 +0300 Subject: [PATCH] Update doc strings --- slpkg/downloader.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/slpkg/downloader.py b/slpkg/downloader.py index 750866bc..095f3e55 100644 --- a/slpkg/downloader.py +++ b/slpkg/downloader.py @@ -42,9 +42,8 @@ class Download(object): self.downder_options = self.meta.downder_options def start(self): - """ - Download files usign wget. - """ + """Download files using wget or other downloader. + Optional curl and aria2c""" dwn_count = 1 self._directory_prefix() print self.downder, self.downder_options, self.dir_prefix @@ -72,6 +71,8 @@ class Download(object): sys.exit(0) def _directory_prefix(self): + """Downloader options for specific directory + """ if self.downder == "wget": self.dir_prefix = "--directory-prefix=" elif self.downder == "aria2c":