소스 검색

Fix summary for Python 2

master
Pavel Šimerda 8 년 전
부모
커밋
99ff03f2d1
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. +3
    -3
      lib/invoice/cli.py

+ 3
- 3
lib/invoice/cli.py 파일 보기

@@ -105,9 +105,9 @@ class Application:
paid += data.sum

print()
print("Total: {:6}".format(total))
print("Paid: {:6}".format(paid))
print("Unpaid: {:6}".format(total-paid))
print("Total: {0:6}".format(total))
print("Paid: {0:6}".format(paid))
print("Unpaid: {0:6}".format(total-paid))

def do_new(self, company_name):
"""Create and edit a new invoice."""


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