Fixed bug with NotFoundException

Fixed bug with NotFoundException when unsubstituted
variable appears instead of given value.

Change-Id: Icd2e2b7b0b75e88926cb6d355ccf5e03cf5dc423
Closes-bug: #1354421
This commit is contained in:
Andrey Pavlov 2014-08-08 16:42:25 +04:00
parent b434226c4f
commit d9fd11658b

View File

@ -45,6 +45,8 @@ class NotFoundException(SaharaException):
self.value = value
if message:
self.message = message % value
else:
self.message = self.message % value
class NameAlreadyExistsException(SaharaException):