Explorar o código

fix: Using deprecated method warn() (deprecated-method)

$ pipenv run pylint free_disk
************* Module free_disk
free_disk.py:39:8: W1505: Using deprecated method warn() (deprecated-method)
https://travis-ci.org/fphammerle/free-disk/jobs/525252024
Fabian Peter Hammerle %!s(int64=6) %!d(string=hai) anos
pai
achega
f86bab84ed
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      free_disk.py

+ 1 - 1
free_disk.py

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