diff options
Diffstat (limited to 'module/plugins/internal/Container.py')
-rw-r--r-- | module/plugins/internal/Container.py | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/module/plugins/internal/Container.py b/module/plugins/internal/Container.py index 097b04ac7..fc1a93606 100644 --- a/module/plugins/internal/Container.py +++ b/module/plugins/internal/Container.py @@ -23,8 +23,9 @@ class Container(Crypter): def preprocessing(self, thread): - """Prepare""" - + """ + Prepare + """ self.setup() self.thread = thread @@ -37,9 +38,10 @@ class Container(Crypter): def _load2disk(self): - """Loads container to disk if its stored remotely and overwrite url, - or check existent on several places at disk""" - + """ + Loads container to disk if its stored remotely and overwrite url, + or check existent on several places at disk + """ if self.pyfile.url.startswith("http"): self.pyfile.name = re.findall("([^\/=]+)", self.pyfile.url)[-1] content = self.load(self.pyfile.url) |