You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by tr...@apache.org on 2008/09/09 20:25:49 UTC

svn commit: r693548 - /incubator/qpid/trunk/qpid/cpp/managementgen/qmf/generate.py

Author: tross
Date: Tue Sep  9 11:25:48 2008
New Revision: 693548

URL: http://svn.apache.org/viewvc?rev=693548&view=rev
Log:
Removed @staticmethod decorator which is unsupported by older Python versions

Modified:
    incubator/qpid/trunk/qpid/cpp/managementgen/qmf/generate.py

Modified: incubator/qpid/trunk/qpid/cpp/managementgen/qmf/generate.py
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/managementgen/qmf/generate.py?rev=693548&r1=693547&r2=693548&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/cpp/managementgen/qmf/generate.py (original)
+++ incubator/qpid/trunk/qpid/cpp/managementgen/qmf/generate.py Tue Sep  9 11:25:48 2008
@@ -299,7 +299,7 @@
     stream = template.expand (makefile)
     self.writeIfChanged (stream, target, force)
 
-  @staticmethod
   def getModulePath():
     return __file__
 
+  getModulePath = staticmethod(getModulePath)