Kaynağa Gözat

Fix summary for Python 2

master
Pavel Šimerda 8 yıl önce
ebeveyn
işleme
99ff03f2d1
1 değiştirilmiş dosya ile 3 ekleme ve 3 silme
  1. +3
    -3
      lib/invoice/cli.py

+ 3
- 3
lib/invoice/cli.py Dosyayı Görüntüle

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


Yükleniyor…
İptal
Kaydet