diff options
author | Tim Hatch <tim@timhatch.com> | 2014-05-16 17:49:49 -0700 |
---|---|---|
committer | Tim Hatch <tim@timhatch.com> | 2014-05-16 17:49:49 -0700 |
commit | 97422c5ed7200eeb588cf07f3e63cd1a80016f15 (patch) | |
tree | d34ff1aea3c8641eea785f0cb430bfa4a2630fdd /pygments/formatters/html.py | |
parent | c5af6ba52c15caee0bce29fba439c8495feea1a7 (diff) | |
parent | 234df186957e0b4419d4a587daaea97dee27d484 (diff) | |
download | pygments-97422c5ed7200eeb588cf07f3e63cd1a80016f15.tar.gz |
Merged in dietmarw/pygments-main (pull request #348)
Modelica-lexer: Add "end" to keyword list again
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: |