fixed error msg construction

This commit is contained in:
Darren Ranalli 2003-05-13 22:42:05 +00:00
parent 2bdd2c69b3
commit babe3283bd
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ class ClientRepository(DirectObject.DirectObject):
self.dcFile = DCFile()
readResult = self.dcFile.read(dcFileName)
if not readResult:
self.notify.error("Could not read dcfile: " + dcFileName)
self.notify.error("Could not read dcfile: %s" % dcFileName.cStr())
self.hashVal = self.dcFile.getHash()
return self.parseDcClasses(self.dcFile)