Not dealing right now with a comprehensive upgrade.
svn path=/trunk/packages/sipb-xen-base/; revision=766
+sipb-xen-base (8.7) unstable; urgency=low
+
+ * back to 2.4 compatibility
+
+ -- Greg Price <price@mit.edu> Mon, 28 Jul 2008 07:44:27 -0400
+
sipb-xen-base (8.6) unstable; urgency=low
* switching to python 2.5 only
-from __future__ import with_statement
import yaml
default_path = '/etc/invirt/master.yaml'
except: default_loader = yaml.SafeLoader
def load( path = default_path ):
- with file( path ) as f:
- return yaml.load( f, default_loader )
+ return yaml.load( file(path), default_loader )
# vim:et:sw=4:ts=4