Index: trunk/tools/editor_trends/bots/detector.py |
— | — | @@ -160,7 +160,7 @@ |
161 | 161 | bot.id = contributor.find('id').text |
162 | 162 | timestamp = revision.find('timestamp').text |
163 | 163 | if timestamp != None: |
164 | | - timestamp = file_utils.convert_timestamp_to_datetime_naive(timestamp) |
| 164 | + timestamp = file_utils.convert_timestamp_to_datetime_naive(timestamp, settings.timestamp_format) |
165 | 165 | bot.time[str(timestamp.year)].append(timestamp) |
166 | 166 | bots[username] = bot |
167 | 167 | |