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

Changed references to what has already been moved from hsutil to hscommon (io, path, testutil).

This commit is contained in:
Virgil Dupras
2011-01-11 11:59:53 +01:00
parent e0cc8ecda2
commit 33c0ba808c
16 changed files with 27 additions and 31 deletions

View File

@@ -10,7 +10,7 @@ import logging
import re
from jobprogress import job
from hsutil import io
from hscommon import io
from hsutil.misc import dedupe
from hsutil.str import get_file_ext, rem_file_ext
@@ -37,7 +37,7 @@ def is_same_with_digit(name, refname):
end = name[len(refname):].strip()
return RE_DIGIT_ENDING.match(end) is not None
class Scanner(object):
class Scanner:
def __init__(self):
self.ignore_list = IgnoreList()
self.discarded_file_count = 0