python: Use new-style classes in ashd.wsgidir.
[ashd.git] / python / ashd / wsgidir.py
index 5ce7638..83d96a0 100644 (file)
@@ -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