We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d80fd43 commit bd722b2Copy full SHA for bd722b2
handlers/easy_info/__init__.py
@@ -19,7 +19,7 @@
19
20
class EasyInfoHandler(EventHandler):
21
def on_issue_labeled(self, api, payload):
22
- if payload['label']['name'].lower() == 'e-less complex':
+ if payload['label']['name'].lower() == 'e-less-complex':
23
api.post_comment(MSG % (api.user, ASSIGN_MSG))
24
25
def on_new_comment(self, api, payload):
handlers/easy_info/tests/label_easy.json
@@ -11,7 +11,7 @@
11
"name": "highfive"
12
},
13
"label": {
14
- "name": "E-less complex"
+ "name": "E-less-complex"
15
16
"action": "labeled",
17
"issue": {
0 commit comments