summaryrefslogtreecommitdiff
path: root/www/grail/files/patch-Stylesheet.py
diff options
context:
space:
mode:
authorJacques Vidrine <nectar@FreeBSD.org>2001-08-30 15:45:01 +0000
committerJacques Vidrine <nectar@FreeBSD.org>2001-08-30 15:45:01 +0000
commitcc46bdc064f568b1e1b2fd0c13aa22a7a336d9b4 (patch)
tree48849c5eb1b1129e409a8cc85c35b99f4307be00 /www/grail/files/patch-Stylesheet.py
parentUpdate MASTER_SITES (diff)
= 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
Notes
Notes: svn path=/head/; revision=47161
Diffstat (limited to 'www/grail/files/patch-Stylesheet.py')
-rw-r--r--www/grail/files/patch-Stylesheet.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/www/grail/files/patch-Stylesheet.py b/www/grail/files/patch-Stylesheet.py
new file mode 100644
index 000000000000..be028001f7b9
--- /dev/null
+++ b/www/grail/files/patch-Stylesheet.py
@@ -0,0 +1,11 @@
+--- 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):