summaryrefslogtreecommitdiffstats
path: root/.local/bin/oslopolicy-list-redundant
blob: 41505623d12c2ba667d5ff801634e67f3416637e (plain) (blame)
1
2
3
4
5
6
7
8
#!/usr/local/bin/python3.8
# -*- coding: utf-8 -*-
import re
import sys
from oslo_policy.generator import list_redundant
if __name__ == '__main__':
    sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
    sys.exit(list_redundant())