Fix spelling error

Change-Id: I9ef575d456d24c6bbea18420bc20768b887ed80c
This commit is contained in:
zhangzs 2018-02-06 16:00:49 +08:00
parent e1876a8290
commit acede4dd1c
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ class AclAddCommand(cmd.AddCommand):
if direction not in ('from-lport', 'to-lport'):
raise TypeError("direction must be either from-lport or to-lport")
if not 0 <= priority <= const.ACL_PRIORITY_MAX:
raise ValueError("priority must be beween 0 and %s, inclusive" % (
raise ValueError("priority must be between 0 and %s, inclusive" % (
const.ACL_PRIORITY_MAX))
if action not in ('allow', 'allow-related', 'drop', 'reject'):
raise TypeError("action must be allow/allow-related/drop/reject")