= Patch misuse of `append' that is no longer acceptable in Python 2 = Mark BROKEN: it doesn't seem to work with Python 2 = Release MAINTAINERship in the hopes that someone else will want to play with this and fix it
11 lines
409 B
Python
11 lines
409 B
Python
--- Stylesheet.py.orig Thu Aug 30 10:35:51 2001
|
|
+++ Stylesheet.py Thu Aug 30 10:36:05 2001
|
|
@@ -42,7 +42,7 @@
|
|
fonts = self.prefs.GetGroup('styles-fonts')
|
|
massaged = []
|
|
for ((g, c), v) in fonts:
|
|
- massaged.append((g, c), v % fparms_dict)
|
|
+ massaged.append(((g, c), v % fparms_dict))
|
|
self.dictify_group(massaged)
|
|
|
|
def __getattr__(self, composite):
|