From 99febbd5e218cef31b9babc56c379e213cd383a7 Mon Sep 17 00:00:00 2001 From: lovetox Date: Sat, 23 May 2020 21:11:04 +0200 Subject: [PATCH] [plugin_installer] Fix auto update --- plugin_installer/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin_installer/utils.py b/plugin_installer/utils.py index ea88aa4..7bf7d4d 100644 --- a/plugin_installer/utils.py +++ b/plugin_installer/utils.py @@ -110,7 +110,7 @@ class PluginInfo: if not manifest_path.exists(): return None try: - return V(PluginInfo.from_path(manifest_path).version) + return PluginInfo.from_path(manifest_path).version except Exception as error: log.warning(error) return None