diff options
author | Benoit Foucher <benoit@zeroc.com> | 2018-05-28 08:09:44 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2018-05-28 08:09:44 +0200 |
commit | 1bfbbf1d49ef5b0c85f576708b08f51e3dfb4394 (patch) | |
tree | 28ff4f7dd33953e15697942728bb913809b69964 /scripts/Util.py | |
parent | Another argument issue when calling Platform._getBinDir (diff) | |
download | ice-1bfbbf1d49ef5b0c85f576708b08f51e3dfb4394.tar.bz2 ice-1bfbbf1d49ef5b0c85f576708b08f51e3dfb4394.tar.xz ice-1bfbbf1d49ef5b0c85f576708b08f51e3dfb4394.zip |
Fixed Android testing issue
Diffstat (limited to 'scripts/Util.py')
-rw-r--r-- | scripts/Util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Util.py b/scripts/Util.py index ed9e433daf3..ed04d454452 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -3085,7 +3085,7 @@ class AndroidMappingMixin(): self.baseclass = baseclass def getSSLProps(self, process, current): - props = super(baseclass, self).getSSLProps(self, process, current) + props = super(self.baseclass, self).getSSLProps(self, process, current) props.update({ "IceSSL.KeystoreType" : "BKS", "IceSSL.TruststoreType" : "BKS", |