diff options
-rw-r--r-- | .hgtags | 1 | ||||
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | lib/mauve/notifiers/xmpp.rb | 2 | ||||
-rw-r--r-- | lib/mauve/version.rb | 2 |
4 files changed, 9 insertions, 2 deletions
@@ -10,3 +10,4 @@ df0c174c38f6489ab232262f892563c4f8956b09 3.5.8 7e2e95d0bcc1661b87cbd7c889ae34235e54d6b4 3.5.0 f8edd462e6123096d59f720c35334ca52e78b178 3.5.10 3014ac988310e93c713f43bd9f3dbfd5530928f7 3.6.0 +1ce7089fb72d5f51812e441238cc21cf86a8ea7d 3.6.1 diff --git a/debian/changelog b/debian/changelog index e614843..4f2c03b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +mauvealert (3.6.1) stable; urgency=low + + * Fixed up alert ack parsing a bit. + + -- Patrick J Cherry <patrick@bytemark.co.uk> Mon, 07 Nov 2011 09:38:05 +0000 + mauvealert (3.6.0) stable; urgency=low * Changed ack command to split on spaces or commas or both diff --git a/lib/mauve/notifiers/xmpp.rb b/lib/mauve/notifiers/xmpp.rb index 8254494..44c6f16 100644 --- a/lib/mauve/notifiers/xmpp.rb +++ b/lib/mauve/notifiers/xmpp.rb @@ -565,7 +565,7 @@ EOF alerts, n_hours, type_hours, dhms, note = [$1,$2, $3, $4, $5] - alerts = alerts.split(/\D/) + alerts = alerts.split(/\D+/) n_hours = case dhms when /^day/ diff --git a/lib/mauve/version.rb b/lib/mauve/version.rb index c6db6b0..487b3a6 100644 --- a/lib/mauve/version.rb +++ b/lib/mauve/version.rb @@ -5,6 +5,6 @@ module Mauve # # Current version - VERSION="3.6.0" + VERSION="3.6.1" end |