diff options
| author | Ted Ross <tross@apache.org> | 2008-09-09 18:25:48 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2008-09-09 18:25:48 +0000 |
| commit | 4fd4650b7f657610e94a909cdb14f0b06ac5c4a4 (patch) | |
| tree | 61548ca9c0768b95547047915800e919dd6e936b /qpid/cpp | |
| parent | ae0ad898abf83a3b790dc9aa4e19adc198a53ee2 (diff) | |
| download | qpid-python-4fd4650b7f657610e94a909cdb14f0b06ac5c4a4.tar.gz | |
Removed @staticmethod decorator which is unsupported by older Python versions
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@693548 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp')
| -rwxr-xr-x | qpid/cpp/managementgen/qmf/generate.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/managementgen/qmf/generate.py b/qpid/cpp/managementgen/qmf/generate.py index e977ce2e9d..9050ca8ced 100755 --- a/qpid/cpp/managementgen/qmf/generate.py +++ b/qpid/cpp/managementgen/qmf/generate.py @@ -299,7 +299,7 @@ class Generator: stream = template.expand (makefile) self.writeIfChanged (stream, target, force) - @staticmethod def getModulePath(): return __file__ + getModulePath = staticmethod(getModulePath) |
