summaryrefslogtreecommitdiff
path: root/app/services
diff options
context:
space:
mode:
authorJose <jivanvl@hotmail.com>2018-04-25 15:56:06 -0500
committerJose <jivanvl@hotmail.com>2018-04-25 15:58:19 -0500
commitbb650ad05240a54497599b6a884ac0f7f8fa1629 (patch)
tree2fef5f638f87523812458c383c9fb42737f014cc /app/services
parent3d12ce95b1307f9b8439aab9ac5fe9d406ab9b01 (diff)
downloadgitlab-ce-bb650ad05240a54497599b6a884ac0f7f8fa1629.tar.gz
Remove comma from the time system notes
Diffstat (limited to 'app/services')
-rw-r--r--app/services/system_note_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/system_note_service.rb b/app/services/system_note_service.rb
index 958ef065012..00bf5434b7f 100644
--- a/app/services/system_note_service.rb
+++ b/app/services/system_note_service.rb
@@ -159,7 +159,7 @@ module SystemNoteService
body = if noteable.time_estimate == 0
"removed time estimate"
else
- "changed time estimate to #{parsed_time},"
+ "changed time estimate to #{parsed_time}"
end
create_note(NoteSummary.new(noteable, project, author, body, action: 'time_tracking'))