Skip to content

Commit

Permalink
need to escape display name of URL
Browse files Browse the repository at this point in the history
  • Loading branch information
sjanssen2 committed Mar 11, 2024
1 parent 4955445 commit 5f18fcb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qp_dbbact/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
APIURL = 'http://api.dbbact.org'

opt_params = {
'dbBact server URL': ['choice:["%s"]' % URL,
'dbBact server URL': ['choice:["%s"]' % urllib.parse.quote_plus(URL),
urllib.parse.quote_plus(URL)],
'dbBact api URL': ['choice:["%s"]' % APIURL,
'dbBact api URL': ['choice:["%s"]' % urllib.parse.quote_plus(APIURL),
urllib.parse.quote_plus(APIURL)],
'Minimum ASV sample occurence in feature-table': ['float', '0.333'],
'Wordcloud width': ['integer', '400'],
Expand Down

0 comments on commit 5f18fcb

Please sign in to comment.