Fix comment

pull/1300/head
Willem Melching 2020-03-31 14:43:53 -07:00
parent d8d2d568dc
commit ca2d9af954
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ MAX_SIZE = 100000 * 10 # Normal size is 40-100k, allow up to 1M
def get_tombstones():
"""Returns list of (c_time, filename) for all tombstones in /data/tombstones"""
"""Returns list of (filename, ctime) for all tombstones in /data/tombstones"""
DIR_DATA = "/data/tombstones/"
return [(DIR_DATA + fn, int(os.stat(DIR_DATA + fn).st_ctime))
for fn in os.listdir(DIR_DATA) if fn.startswith("tombstone")]