summaryrefslogtreecommitdiffstats
path: root/module/lib/bottle.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2011-12-08 17:41:14 +0100
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2011-12-08 17:41:14 +0100
commit8c9603722b027764a5d85e2dee7b7f3d2983b362 (patch)
treeab9725d631f442f71ae21b3e500ece0f74914f42 /module/lib/bottle.py
parentclosed #450 (diff)
downloadpyload-8c9603722b027764a5d85e2dee7b7f3d2983b362.tar.xz
fixed deprecation warnings
Diffstat (limited to 'module/lib/bottle.py')
-rw-r--r--module/lib/bottle.py4
1 files changed, 0 insertions, 4 deletions
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