move checksum import inline so we don't import gst again

This commit is contained in:
Thomas Vander Stichele
2010-04-16 21:11:50 +00:00
parent 61193a4398
commit 5a778deca7

View File

@@ -25,10 +25,8 @@ import os
import shutil
import tempfile
from morituri.common import common, task, checksum
from morituri.common import log
log.init()
from morituri.common import common, task
print 'here we are'
class Profile(object):
name = None
@@ -460,6 +458,8 @@ class SafeRetagTask(task.MultiSeparateTask):
self.tasks = [TagReadTask(path), ]
def stopped(self, taskk):
from morituri.common import checksum
if not taskk.exception:
# Check if the tags are different or not
if taskk == self.tasks[0]: