diff options
author | Bernard Normier <bernard@zeroc.com> | 2006-06-09 13:25:18 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2006-06-09 13:25:18 +0000 |
commit | 8852556c0fcc7a7d48acfcf85a3c6045b248f36b (patch) | |
tree | f4de5f901629120910cb978735f4dae8d87c7bea /py/python/Ice.py | |
parent | Added allocatable objects (diff) | |
download | ice-8852556c0fcc7a7d48acfcf85a3c6045b248f36b.tar.bz2 ice-8852556c0fcc7a7d48acfcf85a3c6045b248f36b.tar.xz ice-8852556c0fcc7a7d48acfcf85a3c6045b248f36b.zip |
Fixed createProperties
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r-- | py/python/Ice.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py index d15fc42b92c..d9ec5364914 100644 --- a/py/python/Ice.py +++ b/py/python/Ice.py @@ -458,8 +458,8 @@ class PropertiesI(Properties): # # Ice.createProperties() # -def createProperties(args=[]): - properties = IcePy.createProperties(args) +def createProperties(args=[], defaults=None): + properties = IcePy.createProperties(args, defaults) return PropertiesI(properties) |