소스 검색

missing space

master
cquest 7 년 전
부모
커밋
f063ecbea1
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      tootbot.py

+ 2
- 2
tootbot.py 파일 보기

@@ -92,10 +92,10 @@ for t in reversed(d.entries):
m = re.search(r"pic.twitter.com[^ \xa0]*", c)
if m != None:
l = m.group(0)
c = c.replace(l,'')
c = c.replace(l,' ')

# remove ellipsis
c = c.replace('\xa0…','')
c = c.replace('\xa0…',' ')

if toot_media is not None:
toot = mastodon_api.status_post(c, in_reply_to_id=None, media_ids=toot_media, sensitive=False, visibility='public', spoiler_text=None)


불러오는 중...
취소
저장