Commit b8a903ef authored by w-e-w's avatar w-e-w

fix check for updates status always "unknown"

parent d0bf509f
...@@ -61,7 +61,7 @@ class Extension: ...@@ -61,7 +61,7 @@ class Extension:
self.from_dict(d) self.from_dict(d)
except FileNotFoundError: except FileNotFoundError:
pass pass
self.status = 'unknown' self.status = 'unknown' if self.status == '' else self.status
def do_read_info_from_repo(self): def do_read_info_from_repo(self):
repo = None repo = None
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment