Hi.
In vccleaner script in line 87 is:
if cur_time - os.stat(video)[stat.ST_MTIME] > expire*86400:
but in line 88 is:
age = int((cur_time - os.stat(video)[stat.ST_ATIME]) / 86400)
Is it correct?
In line 87 shouldn't be stat.ST_ATIME instead of stat.ST_MTIME?

