diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-07 15:37:16 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-07 15:38:19 +0100 |
commit | 431b49fbec68c17c7a486ef0f577107d3dd27e55 (patch) | |
tree | 5d2e7c3fd4b7d0bd278de72e7479e2e0e6e6646f /pyuno | |
parent | 00808a7b375c665f58c5c50a94405b37020950a9 (diff) |
No serviceNames attribute in Loader
Change-Id: I6cc001d18683fc412f0ec0b6a33054d6e745463f
Diffstat (limited to 'pyuno')
-rw-r--r-- | pyuno/source/loader/pythonloader.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyuno/source/loader/pythonloader.py b/pyuno/source/loader/pythonloader.py index 3074d0f628a9..1d1b7de22652 100644 --- a/pyuno/source/loader/pythonloader.py +++ b/pyuno/source/loader/pythonloader.py @@ -157,7 +157,7 @@ class Loader( XImplementationLoader, XServiceInfo, unohelper.Base ): return g_implementationName def supportsService( self, ServiceName ): - return ServiceName in self.serviceNames + return ServiceName in self.getSupportedServiceNames() def getSupportedServiceNames( self ): return g_supportedServices |