This commit is contained in:
Kovid Goyal 2013-10-07 12:38:44 +05:30
parent 214e252f98
commit 980ecc2e12

View File

@ -78,7 +78,6 @@ class xISBN(Thread):
self.tb = traceback.format_exception()
class ISBNMerge(object):
def __init__(self, log):
@ -492,7 +491,6 @@ def identify(log, abort, # {{{
log('We have %d merged results, merging took: %.2f seconds' %
(len(results), time.time() - start_time))
max_tags = msprefs['max_tags']
for r in results:
r.tags = r.tags[:max_tags]
@ -594,7 +592,7 @@ if __name__ == '__main__': # tests {{{
),
]
#test_identify(tests[1:2])
# test_identify(tests[1:2])
test_identify(tests)
# }}}