Commit 16469916 authored by AUTOMATIC's avatar AUTOMATIC

display 8 (rather than 7) characters of the extension commit hash in the installed extensions table

parent d023532c
......@@ -44,7 +44,7 @@ class Extension:
self.status = 'unknown'
head = repo.head.commit
ts = time.asctime(time.gmtime(repo.head.commit.committed_date))
self.version = f'{head.hexsha[:7]} ({ts})'
self.version = f'{head.hexsha[:8]} ({ts})'
except Exception:
self.remote = 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