diff options
| author | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-17 08:00:19 +0000 |
|---|---|---|
| committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-17 08:00:19 +0000 |
| commit | d91085598f5185b267ea51a3f615da9527af2ed2 (patch) | |
| tree | 80849b9455438e9963a61d7aff3fc3b060213553 /Tools/pynche | |
| parent | fe55464f393fc002fd0911a4d8dba6694723d408 (diff) | |
| download | cpython-git-d91085598f5185b267ea51a3f615da9527af2ed2.tar.gz | |
Remove apply()
Diffstat (limited to 'Tools/pynche')
| -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 56f694062b..d2ad61ac54 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(): |
