Explorar el Código

Fix summary for Python 2

master
Pavel Šimerda hace 8 años
padre
commit
99ff03f2d1
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. +3
    -3
      lib/invoice/cli.py

+ 3
- 3
lib/invoice/cli.py Ver fichero

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


Cargando…
Cancelar
Guardar