Update exceptions.py

pull/50/head
Colin S 2018-02-28 14:43:17 +02:00 zatwierdzone przez GitHub
rodzic fdb05074a3
commit 5a0a382914
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -33,5 +33,5 @@ class AmbigousTimeError(ParseError):
self.packet_time = packet_time
self.timedelta = reference - datetime.combine(reference, packet_time)
self.message = "Can't reconstruct timstamp, {:.0f}s from past.".format(self.timedelta.total_seconds())
self.message = "Can't reconstruct timestamp, {:.0f}s from past.".format(self.timedelta.total_seconds())
super(AmbigousTimeError, self).__init__(self.message)