summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Pipping <sebastian@pipping.org>2010-01-04 05:31:15 +0100
committerSebastian Pipping <sebastian@pipping.org>2010-01-04 05:31:15 +0100
commit4cfd62c88c855c90f56db1a60ef2e438b13ca3d6 (patch)
tree0b5f7b3f8fd450c54a1a4835a717da17a1fb299e
parent9c520cc5bfd77769ba989b11ce90372c8206b44b (diff)
downloadlayman-4cfd62c88c855c90f56db1a60ef2e438b13ca3d6.tar.gz
layman-4cfd62c88c855c90f56db1a60ef2e438b13ca3d6.tar.bz2
layman-4cfd62c88c855c90f56db1a60ef2e438b13ca3d6.zip
Make Overlay derive from object so we can use super() in subclasses
-rw-r--r--layman/overlays/overlay.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/layman/overlays/overlay.py b/layman/overlays/overlay.py
index e1a248b..8e1abc2 100644
--- a/layman/overlays/overlay.py
+++ b/layman/overlays/overlay.py
@@ -43,7 +43,7 @@ from layman.debug import OUT
#
#-------------------------------------------------------------------------------
-class Overlay:
+class Overlay(object):
''' Derive the real implementations from this.'''
type = 'None'