Fix invalid exception format strings
Some exception formation strings were missing the conversion type Change-Id: I99fda0a49acce8c5c1f1b9a09bcaff24140aaf44
This commit is contained in:
		@@ -179,7 +179,7 @@ class DBError(NovaException):
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class DeprecatedConfig(NovaException):
 | 
			
		||||
    message = _("Fatal call to deprecated config %(msg)")
 | 
			
		||||
    message = _("Fatal call to deprecated config %(msg)s")
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class DecryptionFailure(NovaException):
 | 
			
		||||
@@ -1129,11 +1129,11 @@ class CouldNotFetchImage(NovaException):
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class TaskAlreadyRunning(NovaException):
 | 
			
		||||
    message = _("Task %(task_name) is already running on host %(host)")
 | 
			
		||||
    message = _("Task %(task_name)s is already running on host %(host)s")
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class TaskNotRunning(NovaException):
 | 
			
		||||
    message = _("Task %(task_name) is not running on host %(host)")
 | 
			
		||||
    message = _("Task %(task_name)s is not running on host %(host)s")
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class InstanceIsLocked(InstanceInvalidState):
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user