mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Few more py3 cleanups
This commit is contained in:
parent
ac6b7045db
commit
d277c6b821
1 changed files with 4 additions and 3 deletions
|
@ -1,5 +1,6 @@
|
|||
#!/usr/bin/env python
|
||||
from __future__ import print_function
|
||||
from __future__ import (absolute_import, division, print_function)
|
||||
__metaclass__ = type
|
||||
|
||||
import os
|
||||
import stat
|
||||
|
@ -136,11 +137,11 @@ if __name__ == "__main__":
|
|||
#display(" ", log_only=True)
|
||||
try:
|
||||
sys.exit(main(sys.argv[1:]))
|
||||
except AnsibleError, e:
|
||||
except AnsibleError as e:
|
||||
#display("ERROR: %s" % e, color='red', stderr=True)
|
||||
print(e)
|
||||
sys.exit(1)
|
||||
except KeyboardInterrupt, ke:
|
||||
except KeyboardInterrupt:
|
||||
#display("ERROR: interrupted", color='red', stderr=True)
|
||||
print("keyboard interrupt")
|
||||
sys.exit(1)
|
||||
|
|
Loading…
Reference in a new issue