freebsd-ports/www/grail/files/patch-Stylesheet.py
Jacques Vidrine cc46bdc064 = Update MASTER_SITES
= 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
2001-08-30 15:45:01 +00:00

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):