From 28c0eca953237f04312df96d0c9e015b1744bdf1 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Wed, 12 Sep 2007 10:16:08 -0400 Subject: [PATCH] Make base pungi class inherit from object, this makes things better on older pythons. (toshio) --- pypungi/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pypungi/__init__.py b/pypungi/__init__.py index e5c192d9..0f28cebe 100644 --- a/pypungi/__init__.py +++ b/pypungi/__init__.py @@ -16,7 +16,7 @@ import logging import os import subprocess -class PungiBase: +class PungiBase(object): """The base Pungi class. Set up config items and logging here""" def __init__(self, config):