Commit 16469916 authored by AUTOMATIC's avatar AUTOMATIC
Browse files

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

parent d023532c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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