Make base pungi class inherit from object, this makes things

better on older pythons.  (toshio)
This commit is contained in:
Jesse Keating 2007-09-12 10:16:08 -04:00 committed by Jesse Keating
parent 9e4cc8ad1a
commit 28c0eca953

View File

@ -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):