Policy output now more clearly prints the policy version.

This commit is contained in:
Joe Testa
2020-07-14 17:38:15 -04:00
parent 00ce44e728
commit b95969bbc0
29 changed files with 29 additions and 29 deletions

View File

@ -357,7 +357,7 @@ macs = %s
def get_name_and_version(self) -> str:
'''Returns a string of this Policy's name and version.'''
return '%s v%s' % (self._name, self._version)
return '%s (version %s)' % (self._name, self._version)
def is_server_policy(self) -> bool: