Skip to content

Commit 385ba70

Browse files
Merge pull request github#1500 from hnk/patch-1
fix(gitlab.coffee): removed rogue line return
2 parents 8eea746 + df2c77c commit 385ba70

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/scripts/gitlab.coffee

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,7 @@ module.exports = (robot) ->
8888
else
8989
switch hook.object_kind
9090
when "issue"
91-
robot.send user, "Issue #{bold(hook.object_attributes.id)}: #{hook.object_attributes.title} (#{h
92-
ook.object_attributes.state})"
91+
robot.send user, "Issue #{bold(hook.object_attributes.id)}: #{hook.object_attributes.title} (#{hook.object_attributes.state})"
9392
when "merge_request"
9493
robot.send user, "Merge Request #{bold(hook.object_attributes.id)}: #{hook.object_attributes.title} (#{hook.object_attributes.state}) between #{bold(hook.object_attributes.source_branch)} and #{bold(hook.object_attributes.target_branch)}"
9594
if hook.object_attributes.description

0 commit comments

Comments
 (0)