diff options
author | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-06-16 10:53:39 +0100 |
---|---|---|
committer | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-06-16 10:53:39 +0100 |
commit | 8da31cd2258c9516c91189595bdb467a93f5aebd (patch) | |
tree | 7e39d4ffb36d0da0d56dde745ccc45f4bfe4f9b4 /bin | |
parent | 3af526a34a0d53cde184134b68f2c241efe92483 (diff) |
IPv6
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/mauveclient | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bin/mauveclient b/bin/mauveclient index 5fbf7dc..30ba57c 100755 --- a/bin/mauveclient +++ b/bin/mauveclient @@ -170,9 +170,11 @@ update.transmission_id = rand(2**63) begin Mauve::Sender.new(ARGV).send(update, verbose) -rescue ArgumentError => ae - error ae.message rescue Protobuf::NotInitializedError => bad error "Alert not initialized fully - you must supply an ID" +rescue ArgumentError => ae + error ae.message +rescue StandardError => ae + error ae.message end |