소스 검색

int(timedelta.total_seconds())

tags/v0.1^2
Ben Kurtovic 12 년 전
부모
커밋
263582f48c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      earwigbot/tasks/drn_clerkbot.py

+ 1
- 1
earwigbot/tasks/drn_clerkbot.py 파일 보기

@@ -596,7 +596,7 @@ class DRNClerkBot(Task):

def format_time_since(self, dt):
parts = [("year", 31536000), ("day", 86400), ("hour", 3600)]
seconds = (datetime.utcnow() - dt).total_seconds()
seconds = int((datetime.utcnow() - dt).total_seconds())
msg = []
for name, size in parts:
num = seconds // size


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