From 8c9603722b027764a5d85e2dee7b7f3d2983b362 Mon Sep 17 00:00:00 2001 From: RaNaN Date: Thu, 8 Dec 2011 17:41:14 +0100 Subject: fixed deprecation warnings --- module/lib/bottle.py | 4 ---- 1 file changed, 4 deletions(-) (limited to 'module/lib') diff --git a/module/lib/bottle.py b/module/lib/bottle.py index f8624bf13..2c243278e 100644 --- a/module/lib/bottle.py +++ b/module/lib/bottle.py @@ -91,10 +91,6 @@ except ImportError: # pragma: no cover py3k = sys.version_info >= (3,0,0) NCTextIOWrapper = None -if sys.version_info < (2,6,0): - msg = "Python 2.5 support may be dropped in future versions of Bottle." - warnings.warn(msg, DeprecationWarning) - if py3k: # pragma: no cover json_loads = lambda s: json_lds(touni(s)) # See Request.POST -- cgit v1.2.3