From 47a1655d3f8fba580f2b6c0274a48992042356a8 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Mon, 29 Jun 2020 20:39:15 +0100 Subject: [PATCH] @ prefix --- petnames.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/petnames.py b/petnames.py index 812e7921..3063cad7 100644 --- a/petnames.py +++ b/petnames.py @@ -123,6 +123,6 @@ def resolvePetnames(baseDir: str, nickname: str, domain: str, print('resolvePetnames: not a petname - ' + wrd) continue # replace the petname with the handle - content = content.replace(wrd + ' ', handle + ' ') + content = content.replace(wrd + ' ', '@' + handle + ' ') print('resolvePetnames: ' + content) return content