2018-02-22 17:08:29 +01:00
|
|
|
#!/usr/bin/env python
|
2019-07-12 08:46:20 +02:00
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
2018-02-22 17:08:29 +01:00
|
|
|
|
|
|
|
import re
|
|
|
|
import sys
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
2018-02-27 08:32:19 +01:00
|
|
|
for path in sys.argv[1:] or sys.stdin.read().splitlines():
|
2018-02-22 17:08:29 +01:00
|
|
|
with open(path, 'r') as path_fd:
|
|
|
|
for line, text in enumerate(path_fd.readlines()):
|
|
|
|
match = re.search(r'((^\s*import\s+six\b)|(^\s*from\s+six\b))', text)
|
|
|
|
|
|
|
|
if match:
|
|
|
|
print('%s:%d:%d: use `ansible.module_utils.six` instead of `six`' % (
|
|
|
|
path, line + 1, match.start(1) + 1))
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|