diff options
author | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-11-07 09:39:11 +0000 |
---|---|---|
committer | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-11-07 09:39:11 +0000 |
commit | 465f6106b5a8c9089d33e2380a1d5ec58dd0bd5e (patch) | |
tree | 6f1e28f61ea7631f8a4bb0ccc050cb0c12aafe66 /lib | |
parent | ff98dc77f8688b6d8124cd004aeec97042e7e241 (diff) |
Fixed up ack parsing.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/mauve/notifiers/xmpp.rb | 2 | ||||
-rw-r--r-- | lib/mauve/version.rb | 2 |
2 files changed, 2 insertions, 2 deletions
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 |