diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-11-01 18:39:07 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-11-01 18:39:07 +0100 |
commit | 34588ba93bd9a2dad164cca7e9702083d3d373ad (patch) | |
tree | eeedd45bb9d8820dac53831b324839409fae9fc8 /module/plugins/Plugin.py | |
parent | [PluginManager] Better PATTERN (diff) | |
download | pyload-34588ba93bd9a2dad164cca7e9702083d3d373ad.tar.xz |
[Plugin] Declare self.html as empty string, not as None type
Diffstat (limited to 'module/plugins/Plugin.py')
-rw-r--r-- | module/plugins/Plugin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/Plugin.py b/module/plugins/Plugin.py index 241c2c12a..7db733dc2 100644 --- a/module/plugins/Plugin.py +++ b/module/plugins/Plugin.py @@ -209,7 +209,7 @@ class Plugin(Base): self.cTask = None #captcha task self.retries = 0 # amount of retries already made - self.html = None # some plugins store html code here + self.html = "" # some plugins store html code here self.init() |