Fix decorator in VersionPlistCommandDependency
authorAndrew Walker <a.walker@leeds.ac.uk>
Mon, 26 Jan 2015 18:52:04 +0000 (18:52 +0000)
committerAndrew Walker <a.walker@leeds.ac.uk>
Mon, 26 Jan 2015 18:55:08 +0000 (18:55 +0000)
commit9bffbc22f007bd7c88e1a246043983fcf53a6528
tree1b825ab97da8a9d605c2c8cab21d56192056d826
parent14156218b0013d670a82783e33b14e5a15d1b252
Fix decorator in VersionPlistCommandDependency

This class includes a static method that calls a
static method and this fails with:

$ ./swc-installation-test-2.py safari
check Safari (safari)... Traceback (most recent call last):
  File "./swc-installation-test-2.py", line 1007, in <module>
    passed = check(args)
  File "./swc-installation-test-2.py", line 243, in check
    version = checker.check()
  File "./swc-installation-test-2.py", line 298, in check
    return self._check()
  File "./swc-installation-test-2.py", line 340, in _check
    version = self._get_version()
  File "./swc-installation-test-2.py", line 536, in _get_version
    return self._get_version_from_plist(path=path)
  File "./swc-installation-test-2.py", line 527, in _get_version_from_plist
    value = self._get_next(root=tree, element=key)
  File "./swc-installation-test-2.py", line 511, in _get_next
    parent = self._get_parent(root=root, element=element)
NameError: global name 'self' is not defined

Change the static method _get_next (which is not passed self when
called) to a class method (which is passed the class object) so
that we can call the _get_parent static method (whatever the class is
called).
swc-installation-test-2.py