Skip to content
This repository was archived by the owner on Mar 8, 2025. It is now read-only.

Commit 842dd5c

Browse files
author
billzt
committed
Fix TSV output in web UI
1 parent 82309ed commit 842dd5c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

primerserver2/core/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
def get():
2-
return '2.0.0b16'
2+
return '2.0.0b17'

primerserver2/web/download.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
def download_tsv():
1010
json_data = json.loads(request.form['json'])
1111
dbs = request.form['dbs'].split(',')
12-
print_lines = output.tsv(json_data['primers'], dbs)
12+
print_lines = output.tsv(json_data['primers'], dbs, json_data['meta']['mode'])
1313
return print_lines

0 commit comments

Comments
 (0)