diff options
| author | 2019-02-07 23:05:29 +0000 | |
|---|---|---|
| committer | 2019-02-07 23:05:29 +0000 | |
| commit | d61bb387f7620686b9a6cf660e3f9978bbce5f0a (patch) | |
| tree | d3e324fe137c8a7b08959c3d3c37a1ba5cb11976 /modules/github/__init__.py | |
| parent | Check that a `check_run` actually started before it finished (github) (diff) | |
| signature | ||
Show when a `check_run` is `queued` (github)
Diffstat (limited to 'modules/github/__init__.py')
| -rw-r--r-- | modules/github/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/github/__init__.py b/modules/github/__init__.py index 7dcdef90..2df058cc 100644 --- a/modules/github/__init__.py +++ b/modules/github/__init__.py @@ -561,7 +561,7 @@ class Module(ModuleManager.BaseModule): status = data["check_run"]["status"] status_str = "" if status == "queued": - return + status_str = utils.irc.bold("queued") elif status == "in_progress": status_str = utils.irc.bold("started") elif status == "completed": |
