diff options
author | Stan Hu <stanhu@gmail.com> | 2016-10-18 11:41:24 -0700 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2016-10-18 16:25:15 -0700 |
commit | 4f24fdc1f9b5aaa77f125ecc91d2d55adb37bf62 (patch) | |
tree | 2e330e8d1ede80b0a555d846693a6f30d0161834 /app/views/notify | |
parent | fc0ad48b202ae9c4ef2af5716c08490e38a27609 (diff) | |
download | gitlab-ce-4f24fdc1f9b5aaa77f125ecc91d2d55adb37bf62.tar.gz |
Use Hash rocket syntax to maintain Ruby 2.1 compatibility
Builds in Ruby 2.1 specs were failing in master: https://gitlab.com/gitlab-org/gitlab-ce/builds/5246591
Closes #23498
Diffstat (limited to 'app/views/notify')
-rw-r--r-- | app/views/notify/pipeline_failed_email.html.haml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/notify/pipeline_failed_email.html.haml b/app/views/notify/pipeline_failed_email.html.haml index ec02c2e2d90..0995826775a 100644 --- a/app/views/notify/pipeline_failed_email.html.haml +++ b/app/views/notify/pipeline_failed_email.html.haml @@ -1,9 +1,9 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional //EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> %html{lang: "en"} %head - %meta{content: "text/html; charset=UTF-8", "http-equiv": "Content-Type"}/ + %meta{content: "text/html; charset=UTF-8", "http-equiv" => "Content-Type"}/ %meta{content: "width=device-width, initial-scale=1", name: "viewport"}/ - %meta{content: "IE=edge", "http-equiv": "X-UA-Compatible"}/ + %meta{content: "IE=edge", "http-equiv" => "X-UA-Compatible"}/ %title= message.subject :css /* CLIENT-SPECIFIC STYLES */ |