# HG changeset patch # User k0s # Date 1254747970 14400 # Node ID 794dac65c9b639927b37cfe5612a956c265cfc76 # Parent 60cfc4b825f0aee756f20d51d5e9ccfe1267cbf2 comment about how brittle the CSS validation is diff -r 60cfc4b825f0 -r 794dac65c9b6 bitsyblog/utils.py --- a/bitsyblog/utils.py Mon Oct 05 09:05:23 2009 -0400 +++ b/bitsyblog/utils.py Mon Oct 05 09:06:10 2009 -0400 @@ -15,7 +15,7 @@ url = url % urllib.quote_plus(css) foo = urllib2.urlopen(url) text = foo.read() - return not 'We found the following errors' in text + return not 'We found the following errors' in text # XXX hacky def date(datestamp): datestamp = os.path.split(datestamp)[-1]