1
0
Fork 0
mirror of https://github.com/sileht/bird-lg.git synced 2024-11-14 03:14:42 +01:00

Removed br tag replacer on whois endpoint

This commit is contained in:
İlteriş Eroğlu 2020-04-29 18:51:25 +03:00 committed by GitHub
parent e5a866b89b
commit ea451f10f8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
lg.py
View file

@ -218,7 +218,7 @@ def whois():
if m:
query = query.groupdict()["domain"]
output = whois_command(query).replace("\n", "<br>")
output = whois_command(query)
return jsonify(output=output, title=query)