commit | 34d11f0670cbfb1e72af5285b36f207f22fb99d2 | [log] [tgz] |
---|---|---|
author | Jack Jansen <jack.jansen@cwi.nl> | Tue Mar 07 23:40:13 2000 +0000 |
committer | Jack Jansen <jack.jansen@cwi.nl> | Tue Mar 07 23:40:13 2000 +0000 |
tree | 1cf65694823451494364f01112227d23726ee9e9 | |
parent | 9de988315a3ac8b87a9881d8d2ebf38d19671442 [diff] [blame] |
Fixed multi-arg appends.
diff --git a/Mac/Tools/IDE/PythonIDEMain.py b/Mac/Tools/IDE/PythonIDEMain.py index 69223f5..a340eef 100644 --- a/Mac/Tools/IDE/PythonIDEMain.py +++ b/Mac/Tools/IDE/PythonIDEMain.py
@@ -204,7 +204,7 @@ title = window.GetWTitle() if not title: title = "<no title>" - windows.append(title, window) + windows.append((title, window)) windows.sort() for title, window in windows: if title == "Python Interactive": # ugly but useful hack by Joe Strout