commit e3a147d24b37d4d9af37faf45ee4602b5771c9a4
Author: Mark Spieth <mspieth@digivation.com.au>
Date:   Fri Apr 30 16:56:38 2010 +1000

    Initializing audio parms from " fix with issues with python 2.56

diff --git a/mythtv/bindings/python/MythTV/MythBase.py b/mythtv/bindings/python/MythTV/MythBase.py
index 87d519f..670f505 100755
--- a/mythtv/bindings/python/MythTV/MythBase.py
+++ b/mythtv/bindings/python/MythTV/MythBase.py
@@ -4,6 +4,7 @@
 Provides base classes for accessing MythTV
 """
 
+from __future__ import with_statement
 from MythStatic import *
 
 import os
@@ -22,6 +23,7 @@ from thread import start_new_thread, allocate_lock
 from select import select
 from uuid import uuid4
 
+
 import MySQLdb, MySQLdb.cursors
 MySQLdb.__version__ = tuple([v for v in MySQLdb.__version__.split('.')])
 
diff --git a/mythtv/bindings/python/MythTV/wikiscripts/wikiscripts.py b/mythtv/bindings/python/MythTV/wikiscripts/wikiscripts.py
index f54d1ab..3021a05 100644
--- a/mythtv/bindings/python/MythTV/wikiscripts/wikiscripts.py
+++ b/mythtv/bindings/python/MythTV/wikiscripts/wikiscripts.py
@@ -2,11 +2,13 @@
 # -*- coding: UTF-8 -*-
 #----------------------
 
+from __future__ import with_statement
 from urllib import urlopen
 from time import time
 from thread import start_new_thread, allocate_lock
 from time import sleep, time
 from MythTV import QuickDictData
+
 import cPickle
 import os
 
