diff options
author | Gaurav Jain <gaurav@gauravjain.org> | 2014-05-12 01:23:10 -0400 |
---|---|---|
committer | Gaurav Jain <gaurav@gauravjain.org> | 2014-05-12 01:23:10 -0400 |
commit | 771db94c213953091daa4c1c73ec7f7e4a40dde9 (patch) | |
tree | cdf931cefab905cfb54712fa1148bb18caade0c8 /pygments/formatters/html.py | |
parent | 900e741b704178a498b43223ec33cd25505231a2 (diff) | |
download | pygments-771db94c213953091daa4c1c73ec7f7e4a40dde9.tar.gz |
Fix some lines to be within 90 characters
Some regular expressions has been simplified to use \w in order to reduce line length
Diffstat (limited to 'pygments/formatters/html.py')
-rw-r--r-- | pygments/formatters/html.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pygments/formatters/html.py b/pygments/formatters/html.py index 3bc60e8a..970e595b 100644 --- a/pygments/formatters/html.py +++ b/pygments/formatters/html.py @@ -523,7 +523,8 @@ class HtmlFormatter(Formatter): self.cssfile) except AttributeError: print('Note: Cannot determine output file name, ' \ - 'using current directory as base for the CSS file name', file=sys.stderr) + 'using current directory as base for the CSS file name', + file=sys.stderr) cssfilename = self.cssfile # write CSS file only if noclobber_cssfile isn't given as an option. try: |