From 989be66cf80eaed45d058522bb49b5abd26c5fba Mon Sep 17 00:00:00 2001 From: Dan Mick Date: Wed, 10 Jul 2013 14:11:08 -0700 Subject: [PATCH] rados.py: allow long-form names of 'warn' and 'err' as watch levels Signed-off-by: Dan Mick --- src/pybind/rados.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pybind/rados.py b/src/pybind/rados.py index 0ba818491a4..13ce006f8ce 100644 --- a/src/pybind/rados.py +++ b/src/pybind/rados.py @@ -1583,8 +1583,8 @@ class Object(object): MONITOR_LEVELS = [ "debug", "info", - "warn", - "err", + "warn", "warning", + "err", "error", "sec", ] -- 2.47.3