From 272c57f1e4ff41e40ecb059e156cd58bd9acb084 Mon Sep 17 00:00:00 2001 From: Jason Antman Date: Wed, 10 Aug 2016 08:54:58 -0400 Subject: [PATCH] skeleton.py - new-style class --- skeleton.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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):