소스 검색

Fix date=due problem

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

+ 1
- 1
lib/invoice/db/invoices.py 파일 보기

@@ -66,7 +66,7 @@ class InvoiceData(Data):
_number_template = "{year}{number:03}"

def _parse_date(self, date):
match = self._date_regex.match(self.date)
match = self._date_regex.match(date)
if not match:
raise ValueError("Bad date format: {}".format(date))
log.debug("Date match: {0}".format(match.groups()))


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