소스 검색

Fix name shadowing.

master
Ben Kurtovic 8 년 전
부모
커밋
f1963f8814
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. +4
    -4
      tif/calc.py

+ 4
- 4
tif/calc.py 파일 보기

@@ -108,12 +108,12 @@ def _format_time(cache_time):
diff = datetime.utcnow() - cache_time
total_seconds = diff.days * 86400 + diff.seconds
if total_seconds > 86400:
return format(diff.seconds / 86400, "day")
return formatter(total_seconds / 86400, "day")
if total_seconds > 3600:
return format(diff.seconds / 3600, "hour")
return formatter(total_seconds / 3600, "hour")
if total_seconds > 60:
return format(diff.seconds / 60, "minute")
return format(total_seconds, "second")
return formatter(total_seconds / 60, "minute")
return formatter(total_seconds, "second")

def _get_protection(page):
edit = [prot for prot in page.protection if prot["type"] == "edit"]


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