diff options
author | Mark Spruiell <mes@zeroc.com> | 2005-04-04 22:34:27 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2005-04-04 22:34:27 +0000 |
commit | 34d0c2f4a6a0126c54d8d3c4345ee3eed230e2d1 (patch) | |
tree | 6f8516328c4b101782e5f09b4839dc7c2dccf8cf /py/python/Ice.py | |
parent | It's now possible to escape variables (diff) | |
download | ice-34d0c2f4a6a0126c54d8d3c4345ee3eed230e2d1.tar.bz2 ice-34d0c2f4a6a0126c54d8d3c4345ee3eed230e2d1.tar.xz ice-34d0c2f4a6a0126c54d8d3c4345ee3eed230e2d1.zip |
fix for bug 178
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r-- | py/python/Ice.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py index 7c1b2fb2ec5..1a4e10a5158 100644 --- a/py/python/Ice.py +++ b/py/python/Ice.py @@ -443,7 +443,7 @@ class Application(object): try: if configFile: - properties = createProperties(args) + properties = createProperties() properties.load(configFile) Application._communicator = initializeWithProperties(args, properties) else: |