Make support/policyvers.py compatible with Python 3
Add parenthesis around print statement, like in other Python scripts.
This commit is contained in:
parent
eb998eed13
commit
1c8c76c927
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/python
|
||||
import selinux
|
||||
if selinux.is_selinux_enabled():
|
||||
print selinux.security_policyvers()
|
||||
print(selinux.security_policyvers())
|
||||
|
|
Loading…
Reference in New Issue