aboutsummaryrefslogtreecommitdiff
path: root/modules/github
diff options
context:
space:
mode:
authorGravatar jesopo2019-03-02 08:31:06 +0000
committerGravatar jesopo2019-03-02 08:31:06 +0000
commita30bc92b94b1a047732e1793f58af410948d51d6 (patch)
tree5d566374e5ee0aa5980a48624ceca623534b5f39 /modules/github
parentTweak !ghpull format/colours (diff)
signature
We don't need a "-" to separate PR title anymore
Diffstat (limited to 'modules/github')
-rw-r--r--modules/github/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/github/__init__.py b/modules/github/__init__.py
index c13514d8..8e9e6f09 100644
--- a/modules/github/__init__.py
+++ b/modules/github/__init__.py
@@ -143,7 +143,7 @@ class Module(ModuleManager.BaseModule):
url = self._short_url(page.data["html_url"])
event["stdout"].write(
- "(%s pull#%s, %s) %s → %s [%s/%s] - %s %s" % (
+ "(%s pull#%s, %s) %s → %s [%s/%s] %s %s" % (
repo, number, page.data["state"], branch_from, branch_to,
added, removed, page.data["title"], url))
def _gh_get_pull(self, username, repository, number):