[Dev OpenGP] [20] Added import for AbstractClass in Metaclass -> I found that fuckin' bug! |
[ Thread Index |
Date Index
| More opengp.tuxfamily.org/development Archives
]
Revision: 20
Author: alband85
Date: 2009-02-09 20:20:24 +0100 (Mon, 09 Feb 2009)
Log Message:
-----------
Added import for AbstractClass in Metaclass -> I found that fuckin' bug!
Modified Paths:
--------------
trunk/src/Metaclass.py
Modified: trunk/src/Metaclass.py
===================================================================
--- trunk/src/Metaclass.py 2009-02-08 00:10:31 UTC (rev 19)
+++ trunk/src/Metaclass.py 2009-02-09 19:20:24 UTC (rev 20)
@@ -1,5 +1,7 @@
# For more informations, see http://code.activestate.com/recipes/266468/
+from AbstractMethod import AbstractMethod
+
class Metaclass (type):
def __init__(cls, name, bases, *args, **kwargs):