diff --git a/oxdbarchive/model.py b/oxdbarchive/model.py index 8dff2a7..5a2facc 100644 --- a/oxdbarchive/model.py +++ b/oxdbarchive/model.py @@ -57,9 +57,9 @@ class Archive(SQLObject): if self.sinceLastModification() > 60*60*2: self.importFiles() else: - print "ignoring %s, was changed less than 2 hours ago" % archive.basePath + print "ignoring %s, was changed less than 2 hours ago" % self.basePath else: - print "WARNING %s, is not online, check power and disk" % archive.basePath + print "WARNING %s, is not online, check power and disk" % self.basePath def isOnline(self): r = os.system('find "%s" >/dev/null 2>&1' % self.basePath)