diff options
author | Zeger-Jan van de Weg <zegerjan@gitlab.com> | 2017-06-21 11:16:38 +0000 |
---|---|---|
committer | Grzegorz Bizon <grzegorz@gitlab.com> | 2017-06-21 11:16:38 +0000 |
commit | 5eb940da76193524bd81d006fee9f7971c750ec0 (patch) | |
tree | 48febd53a6b70681d80c2eb1457eaa7297873cb7 /lib | |
parent | 6a3da45a22165f2f71c023e0656ff07820a1e60e (diff) | |
download | gitlab-ce-5eb940da76193524bd81d006fee9f7971c750ec0.tar.gz |
Replace invalid chars while seeding environments
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/regex.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/regex.rb b/lib/gitlab/regex.rb index e4d2a992470..b706434217d 100644 --- a/lib/gitlab/regex.rb +++ b/lib/gitlab/regex.rb @@ -43,7 +43,7 @@ module Gitlab end def environment_name_regex_message - "can contain only letters, digits, '-', '_', '/', '$', '{', '}', '.' and spaces" + "can contain only letters, digits, '-', '_', '/', '$', '{', '}', '.', and spaces" end def kubernetes_namespace_regex |