diff options
| author | Pinapelz <yukais@pinapelz.com> | 2026-03-06 11:10:30 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-06 11:10:30 -0800 |
| commit | 81e0c4c6bff4b3737e182ba8242ad3834a26e040 (patch) | |
| tree | 7ef9a654c55e7bac335e221f6279727102effd86 | |
| parent | 2d93262945abc798f557baa5d900aaefd04077a8 (diff) | |
Correct typo in success message
Fix typo in success message for found credentials.
| -rw-r--r-- | app.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5,7 +5,7 @@ import os import blackboxprotobuf import streamlit as st - +f st.set_page_config( page_title="Teamspeak 6 Extractor", page_icon="🔍", @@ -292,7 +292,7 @@ st.header(f"Row `{rowid}`") creds = extract_credentials(message) if message else None if creds: - st.success("✅ Matrix credentials found in thsi row!") + st.success("✅ Matrix credentials found in this row!") c1, c2, c3 = st.columns(3) with c1: st.markdown("**Home server**") |
