Browse Source

Remove spaces from HTML password

master
Noëlle 3 years ago
parent
commit
5181c27832
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      koboldgen.py

+ 1
- 1
koboldgen.py View File

@@ -843,7 +843,7 @@ class Campaign:
out = (
f"<div id='passwordbox'>"
f"<span class='passwordhead'>Permalink to this campaign:</span><br>"
f"<span><a href='http://node.noelle.codes/kobold?pw={pw.replace(' ', '')}'>{pw}</a></span>"
f"<span><a href='http://node.noelle.codes/kobold?pw={pw.replace(' ', '')}'>{pw.replace(' ', '')}</a></span>"
f"</div>"
)
print(out)

Loading…
Cancel
Save