From eb03ab8ff6dcd642c1b296db77725f230caa29eb Mon Sep 17 00:00:00 2001 From: oloturia <5429234+oloturia@users.noreply.github.com> Date: Sat, 30 Oct 2021 17:37:24 +0200 Subject: [PATCH] fixed first column --- damastodon.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/damastodon.py b/damastodon.py index fb69ccd..33f3e63 100755 --- a/damastodon.py +++ b/damastodon.py @@ -15,8 +15,8 @@ save_position = "/tmp/" CLEANR = re.compile('<.*?>') botname = "@damastodon " -firow = "🔠1️⃣ 2️⃣ 3️⃣ 4️⃣ 5️⃣ 6️⃣ 7️⃣ 8️⃣\n" -colsx = "🇦 🇧 🇨 🇩 🇪 🇫 🇬 🇭 " +firow = " 1️⃣ 2️⃣ 3️⃣ 4️⃣ 5️⃣ 6️⃣ 7️⃣ 8️⃣\n" +colsx = "🇦🇧🇨🇩🇪🇫🇬🇭" def cleanHTML(raw): cleanText = re.sub(CLEANR, '',raw)