diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-08 15:10:43 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-08 15:10:43 +0200 |
commit | 77ef36eae8c6d930656c5b060bf2e41b6f7fc743 (patch) | |
tree | ee53f08b2ad72c954c6be62a73f7b6fd4237d2e3 /module/plugins/hooks/UpdateManager.py | |
parent | [RapiduNet] https://github.com/pyload/pyload/issues/1326 (diff) | |
download | pyload-77ef36eae8c6d930656c5b060bf2e41b6f7fc743.tar.xz |
[UserAgentSwitcher] Random user-agent feature
Diffstat (limited to 'module/plugins/hooks/UpdateManager.py')
-rw-r--r-- | module/plugins/hooks/UpdateManager.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hooks/UpdateManager.py b/module/plugins/hooks/UpdateManager.py index 643b5c2d1..d66810d6d 100644 --- a/module/plugins/hooks/UpdateManager.py +++ b/module/plugins/hooks/UpdateManager.py @@ -117,7 +117,7 @@ class UpdateManager(Hook): return getURL(self.SERVER_URL, get={'v': self.core.api.getServerVersion()}).splitlines() except Exception: - self.logWarning(_("Unable to contact server to get updates")) + self.logWarning(_("Unable to retrieve server to get updates")) @Expose @@ -258,7 +258,7 @@ class UpdateManager(Hook): if self.core.pluginManager.reloadPlugins(updated): exitcode = 1 else: - self.logWarning(_("pyLoad restart required to reload the updated plugins")) + self.logWarning(_("Restart pyLoad to reload the updated plugins")) self.info['plugins'] = True exitcode = 2 |