Browse Source

bugfixes: keep searching for error with unwritable files

master
TiynGER 1 month ago
parent
commit
961ab04f5c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/studip.py

+ 1
- 1
src/studip.py

@ -149,7 +149,7 @@ class Studip:
#progbar.update(len(chunk))
doc_file.write(chunk)
self.db.set_last_file_dl(str(doc), str(int(time.time())))
except:
except FileNotFoundError:
log.critical("Error while writing to the file " + doc_name)
def get_subdirs(self, folder):

Loading…
Cancel
Save