diff options
author | Yuchen Pei <hi@ypei.me> | 2023-04-04 23:48:31 +1000 |
---|---|---|
committer | Yuchen Pei <hi@ypei.me> | 2023-04-04 23:48:31 +1000 |
commit | 527fdf6d17cd34140e078d13b37a79aaa693f3cb (patch) | |
tree | ec41ae791ab80c13a16e44ded7dce5f1723122a5 /buildbot-view.el | |
parent | 319b7224fc80d3c23beb81f7d268ba25ad75668e (diff) |
fixing bug caused by updated signature of buildbot-view-format-build
Diffstat (limited to 'buildbot-view.el')
-rw-r--r-- | buildbot-view.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/buildbot-view.el b/buildbot-view.el index edf8b20..214444d 100644 --- a/buildbot-view.el +++ b/buildbot-view.el @@ -196,7 +196,7 @@ (concat (buildbot-view-format-revision-info revision-info) "\n" - (buildbot-view-format-build build) + (buildbot-view-format-build (alist-get 'revision revision-info) build) "\n" (buildbot-view-format-step step) "\n" @@ -208,7 +208,7 @@ (concat (buildbot-view-format-revision-info revision-info) "\n" - (buildbot-view-format-build build) + (buildbot-view-format-build (alist-get 'revision revision-info) build) "\n" (buildbot-view-format-step step) "\n" |