log_source.py
changeset 112 090192b64d7e
parent 111 95c0c49d76aa
child 115 751e3fcd11d2
equal deleted inserted replaced
111:95c0c49d76aa 112:090192b64d7e
   625 
   625 
   626     def get_month_days (self, month) :
   626     def get_month_days (self, month) :
   627         """
   627         """
   628             Returns a set of dates for which logfiles are available in the given datetime's month
   628             Returns a set of dates for which logfiles are available in the given datetime's month
   629         """
   629         """
   630         
   630 
   631         # iterate over month's days
   631         # iterate over month's days
   632         for dt in self._iter_month_days(month) :
   632         for dt in self._iter_month_days(month) :
   633             # date in our target timezone
   633             # date in our target timezone
   634             log_date = dt.astimezone(self.tz).date()
   634             log_date = dt.astimezone(self.tz).date()
   635             
   635