1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2026-02-04 20:31:38 +00:00

Changed dupeguru and dupeguru_* external references to core and core_* references.

--HG--
extra : convert_revision : svn%3Ac306627e-7827-47d3-bdf0-9a457c9553a1/trunk%40278
This commit is contained in:
hsoft
2009-12-30 10:37:57 +00:00
parent 6eba99eba1
commit f5accbfaed
26 changed files with 43 additions and 44 deletions

View File

@@ -21,8 +21,8 @@ from hsutil.str import get_file_ext
from hsutil.path import Path
from hsutil.cocoa import as_fetch
from dupeguru import fs
from dupeguru import app_cocoa, directories
from core import fs
from core import app_cocoa, directories
from . import data
from .cache import string_to_colors, Cache
from .scanner import ScannerPE

View File

@@ -8,7 +8,7 @@
# http://www.hardcoded.net/licenses/hs_license
from hsutil.str import format_size
from dupeguru.data import format_path, format_timestamp, format_perc, format_dupe_count, cmp_value
from core.data import format_path, format_timestamp, format_perc, format_dupe_count, cmp_value
def format_dimensions(dimensions):
return '%d x %d' % (dimensions[0], dimensions[1])

View File

@@ -15,7 +15,7 @@ from collections import defaultdict
from hsutil import job
from hsutil.misc import dedupe
from dupeguru.engine import Match
from core.engine import Match
from .block import avgdiff, DifferentBlockCountError, NoBlocksError
from .cache import Cache

View File

@@ -8,7 +8,7 @@
# which should be included with this package. The terms are also available at
# http://www.hardcoded.net/licenses/hs_license
from dupeguru.scanner import Scanner
from core.scanner import Scanner
from . import matchbase