Browse Source

add missing timezone identifier to summary

Fabian Peter Hammerle 5 years ago
parent
commit
bd69bde768
1 changed files with 1 additions and 1 deletions
  1. 1 1
      free_disk/__init__.py

+ 1 - 1
free_disk/__init__.py

@@ -74,7 +74,7 @@ def main():
     if removed_files_counter == 0:
         logging.warning('No files to remove')
     else:
-        logging.info('Removed %d file(s) with modification date <= %s', removed_files_counter,
+        logging.info('Removed %d file(s) with modification date <= %sZ', removed_files_counter,
                      datetime.datetime.utcfromtimestamp(last_mtime).isoformat('T'))