diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2016-11-21 20:17:14 -0800 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2016-11-21 20:17:14 -0800 |
commit | 22417b13f9a19ec1172bac1dcb2d9a0916416c29 (patch) | |
tree | 614a7613de17dbb7a18d0db679b25e60164b8813 | |
parent | expn: fix split out output per bug #600388 (diff) | |
download | rbot-gentoo-22417b13f9a19ec1172bac1dcb2d9a0916416c29.tar.gz rbot-gentoo-22417b13f9a19ec1172bac1dcb2d9a0916416c29.tar.bz2 rbot-gentoo-22417b13f9a19ec1172bac1dcb2d9a0916416c29.zip |
bug#423207: support devs with periods in nick.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
-rw-r--r-- | gentoo-data.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gentoo-data.rb b/gentoo-data.rb index 57cf6e6..f536e44 100644 --- a/gentoo-data.rb +++ b/gentoo-data.rb @@ -400,7 +400,7 @@ plugin.default_auth( 'modify', false ) plugin.default_auth( 'view', true ) REGEX_CP = /^(?:[-[:alnum:]]+\/)?[-+_[:alnum:]]+$/ -REGEX_DEV = /^[-_[:alnum:]]+$/ +REGEX_DEV = /^[-._[:alnum:]]+$/ REGEX_PROJECT = /^[-_@.[:alnum:]]+$/ REGEX_GLSA = /^[-1234567890]+$/ |