Merge pull request #125 from prgTW/patch-1

Return consistent date formats in API
This commit is contained in:
Pēteris Caune 2017-06-29 14:23:54 +03:00 committed by GitHub
commit b6f6ca2f2b

View File

@ -167,8 +167,8 @@ class Check(models.Model):
result["tz"] = self.tz result["tz"] = self.tz
if self.last_ping: if self.last_ping:
result["last_ping"] = self.last_ping.isoformat() result["last_ping"] = self.last_ping.replace(microsecond=0).isoformat()
result["next_ping"] = (self.last_ping + self.timeout).isoformat() result["next_ping"] = (self.last_ping + self.timeout).replace(microsecond=0).isoformat()
else: else:
result["last_ping"] = None result["last_ping"] = None
result["next_ping"] = None result["next_ping"] = None