diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2008-07-13 17:51:52 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2008-07-13 17:51:52 +0000 |
commit | 6c1d2b425bdbaf9dd009ee5406445d6509048e99 (patch) | |
tree | 435d708944c5a1f56b2718fde4c270b322cdcf05 | |
parent | Want baseurl, not a @BUGNO@ url during instance create. (diff) | |
download | rbot-bugzilla-6c1d2b425bdbaf9dd009ee5406445d6509048e99.tar.gz rbot-bugzilla-6c1d2b425bdbaf9dd009ee5406445d6509048e99.tar.bz2 rbot-bugzilla-6c1d2b425bdbaf9dd009ee5406445d6509048e99.zip |
Be consistent.
-rw-r--r-- | bugzilla.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bugzilla.rb b/bugzilla.rb index 974a586..a89be3c 100644 --- a/bugzilla.rb +++ b/bugzilla.rb @@ -311,7 +311,7 @@ class BugzillaPlugin < Plugin # TODO: Promote EMAIL_REPLACEMENTS to a config hash instead, with a nice # large set of defaults. - EMAIL_REPLACEMENTS = { 'gentoo.org' => 'g.o', 'gentooexperimental.org' => 'ge.org' } + EMAIL_REPLACEMENTS = { 'gentoo.org' => 'g.o', 'gentooexperimental.org' => 'ge.o' } def shrink_email(email) domain = email.split(/@/)[1] if EMAIL_REPLACEMENTS.key?(domain) |