main
Bob Mottram 2020-06-29 20:39:15 +01:00
parent 63f1654ba4
commit 47a1655d3f
1 changed files with 1 additions and 1 deletions

View File

@ -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