I've been using py 2.7 for quite a while now under Fedora 14,
and the logging module works just fine. So bump the version check
to 2.7.

Signed-off-by: Lucas Meneghel Rodrigues <[email protected]>
---
 client/common_lib/logging_manager.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/client/common_lib/logging_manager.py 
b/client/common_lib/logging_manager.py
index e34e9c9..96f718a 100644
--- a/client/common_lib/logging_manager.py
+++ b/client/common_lib/logging_manager.py
@@ -79,7 +79,7 @@ def _logging_manager_aware_logger__find_caller(unused):
     return rv
 
 
-if sys.version_info[:2] > (2, 6):
+if sys.version_info[:2] > (2, 7):
     warnings.warn('This module has not been reviewed for Python %s' %
                   sys.version)
 
-- 
1.7.2.3

_______________________________________________
Autotest mailing list
[email protected]
http://test.kernel.org/cgi-bin/mailman/listinfo/autotest

Reply via email to