Skip to content

Commit d45b071

Browse files
committed
O_O
1 parent 7449c3b commit d45b071

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/qutescript/utils.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@
66
HTML_BODY = """\
77
<html>
88
<body>
9-
<pre>
109
{}
11-
<pre>
1210
</body>
1311
"""
1412

@@ -59,5 +57,5 @@ def send_to_browser(text, prefix: str = None):
5957
with tempfile.NamedTemporaryFile(mode='w', prefix=prefix, suffix='.html', delete=False) as out_file:
6058
out_file.writelines(text)
6159
with open(fifo, 'w') as fifo_file:
62-
fifo_file.write('open -t file://{}'.format(
60+
fifo_file.write('open -t file://{}\n'.format(
6361
os.path.abspath(out_file.name)))

0 commit comments

Comments
 (0)