diff options
Diffstat (limited to 'Tools/pynche/pyColorChooser.py')
-rw-r--r-- | Tools/pynche/pyColorChooser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/pynche/pyColorChooser.py b/Tools/pynche/pyColorChooser.py index 56f694062b9..d2ad61ac543 100644 --- a/Tools/pynche/pyColorChooser.py +++ b/Tools/pynche/pyColorChooser.py @@ -81,7 +81,7 @@ def askcolor(color = None, **options): """Ask for a color""" global _chooser if not _chooser: - _chooser = apply(Chooser, (), options) + _chooser = Chooser(**options) return _chooser.show(color, options) def save(): |