Commit c2303737bacb1053dfbf87bc1a3c4639a52f36f9

Authored by Riyad Preukschas
1 parent 3bcc39b4

Fix double ref_type in push event when removing branch or tag

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
app/roles/push_event.rb
... ... @@ -70,7 +70,7 @@ module PushEvent
70 70 if new_ref?
71 71 "pushed new"
72 72 elsif rm_ref?
73   - "removed #{ref_type}"
  73 + "removed"
74 74 else
75 75 "pushed to"
76 76 end
... ...