Skip to content

Commit f775584

Browse files
Gareth Aneurin TribelloGareth Aneurin Tribello
authored andcommitted
Ensured that scroll is always output
1 parent 35c6f06 commit f775584

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55

66
[project]
77
name = "PlumedToHTML"
8-
version = "0.120"
8+
version = "0.121"
99
description = "A package for creating prettified HTML for PLUMED files"
1010
authors = [{ name = "Gareth Tribello", email = "[email protected]" }]
1111
maintainers = [{ name = "Daniele Rapetti", email = "[email protected]" }]

src/PlumedToHTML/PlumedToHTML.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def test_plumed( executible, filename, header=[], printjson=False, jsondir="./",
140140
print("Stderr for source: ",re.sub("^data/","",filename)," ",file=stderr)
141141
print("Download: [zipped raw stdout](" + plumed_file + "." + executible + ".stdout.txt.zip) - [zipped raw stderr](" + plumed_file + "." + executible + ".stderr.txt.zip) ",file=stderr)
142142
if ghmarkdown : print("{% raw %}\n<pre style=\"overflow:scroll;\">",file=stderr)
143-
else : print("<pre>",file=stderr)
143+
else : print("<pre style=\"overflow:scroll;\">",file=stderr)
144144
# now we print the first 1000 lines of errtxtfile to errfile
145145
with open(errtxtfile, "r") as stdtxterr:
146146
# line counter

0 commit comments

Comments
 (0)