From e9a2429e73ef962dd14c9e0c68bb77bd3cc3fd73 Mon Sep 17 00:00:00 2001 From: Ryan Hitchman Date: Sat, 25 Apr 2009 00:01:40 -0600 Subject: [PATCH] skybot now targets python 2.6.2 instead of python 2.5.2 (remove 'from __future__ import with_statement') --- plugins/log.py | 2 -- plugins/remember.py | 2 -- plugins/weather.py | 2 -- 3 files changed, 6 deletions(-) diff --git a/plugins/log.py b/plugins/log.py index ae1ee49..4b454ce 100644 --- a/plugins/log.py +++ b/plugins/log.py @@ -2,8 +2,6 @@ log.py: written by Scaevolus 2009 """ -from __future__ import with_statement - import os import thread import codecs diff --git a/plugins/remember.py b/plugins/remember.py index b760dcf..5d5f99a 100644 --- a/plugins/remember.py +++ b/plugins/remember.py @@ -2,8 +2,6 @@ remember.py: written by Scaevolus 2009 """ -from __future__ import with_statement - import os import thread import codecs diff --git a/plugins/weather.py b/plugins/weather.py index 977c32e..3481869 100644 --- a/plugins/weather.py +++ b/plugins/weather.py @@ -1,7 +1,5 @@ "weather, thanks to google" -from __future__ import with_statement - import os import codecs import thread