diff --git a/skeleton.py b/skeleton.py index c111082..0611fa0 100755 --- a/skeleton.py +++ b/skeleton.py @@ -27,6 +27,7 @@ 2016-08-10 Jason Antman : - nicer logging setup and docstring + - new-style class 2015-07-06 Jason Antman : - switch to module-level logger 2014-12-25 Jason Antman : @@ -48,7 +49,7 @@ logger = logging.getLogger() -class SimpleScript: +class SimpleScript(object): """ might as well use a class. It'll make things easier later. """ def __init__(self, dry_run=False):