diff --git a/mycaldav/models.py b/mycaldav/models.py index c4c481e..fb4bbd5 100644 --- a/mycaldav/models.py +++ b/mycaldav/models.py @@ -28,7 +28,7 @@ class caldav_sync_manager(models.Model): dtDate = models.DateField('Date_synchronized', auto_now_add=True, unique=True) def __str__(self): - return f"{self.dtDate} => {self.bDone}" + return f"{self.dtDate}" def init_caldav(self, caldav_url, caldav_user, caldav_password): client = caldav.DAVClient(url=caldav_url, username=caldav_user, password=caldav_password)