1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2026-01-22 14:41:39 +00:00

Fixed delta columns.

This commit is contained in:
Virgil Dupras
2011-11-27 12:54:58 -05:00
parent 7e95404903
commit 0571151c5f
7 changed files with 9 additions and 10 deletions

View File

@@ -15,7 +15,7 @@ from .result_table import ResultTable
class DupeGuru(DupeGuruBase):
NAME = __appname__
DELTA_COLUMNS = {2, 4}
DELTA_COLUMNS = {'size', 'mtime'}
METADATA_TO_READ = ['size', 'mtime']
def __init__(self, view, appdata):