Searched refs:utc_offset (Results 1 – 1 of 1) sorted by relevance
201 def _GetFilesFromRecursiveLsOutput(path, ls_output, re_file, utc_offset=None): argument242 if not utc_offset and 'timezone' in re_file.groupindex:243 utc_offset = file_match.group('timezone')244 if isinstance(utc_offset, str) and len(utc_offset) == 5:245 utc_delta = datetime.timedelta(hours=int(utc_offset[1:3]),246 minutes=int(utc_offset[3:5]))247 if utc_offset[0:1] == '-':