From: Fredrik Tolf <fredrik@dolda2000.com>
Date: Thu, 14 Apr 2011 09:30:50 +0000 (+0200)
Subject: python: Use new-style classes in ashd.wsgidir.
X-Git-Tag: 0.8~16
X-Git-Url: http://git.dolda2000.com/gitweb/?a=commitdiff_plain;h=f677567ff38930c66cd1f447189ff738fd97daae;p=ashd.git

python: Use new-style classes in ashd.wsgidir.
---

diff --git a/python/ashd/wsgidir.py b/python/ashd/wsgidir.py
index 5ce7638..83d96a0 100644
--- a/python/ashd/wsgidir.py
+++ b/python/ashd/wsgidir.py
@@ -1,7 +1,7 @@
 import os, threading, types
 import wsgiutil
 
-class cachedmod:
+class cachedmod(object):
     def __init__(self, mod, mtime):
         self.lock = threading.Lock()
         self.mod = mod