Fix missing marker functions
In some ValueError exceptions, marker functions are missing. So fix them. TrivialFix Change-Id: I7db3a2a484f834c801aae48732aeff48c5b2ae71
This commit is contained in:
		| @@ -296,7 +296,7 @@ def last_completed_audit_period(unit=None, before=None): | ||||
|     else: | ||||
|         rightnow = timeutils.utcnow() | ||||
|     if unit not in ('month', 'day', 'year', 'hour'): | ||||
|         raise ValueError('Time period must be hour, day, month or year') | ||||
|         raise ValueError(_('Time period must be hour, day, month or year')) | ||||
|     if unit == 'month': | ||||
|         if offset == 0: | ||||
|             offset = 1 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Takashi NATSUME
					Takashi NATSUME