Explorar el Código

Fix logging

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

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

@@ -3,11 +3,12 @@
from __future__ import print_function

import os, sys, argparse, datetime, subprocess
import invoice.db

import logging
logging.basicConfig(level=logging.DEBUG)
log = logging.getLogger()

import invoice.db

class SanityCheckError(Exception):
pass



Cargando…
Cancelar
Guardar