mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
696 B
Bash
22 lines
696 B
Bash
8 years ago
|
#!/bin/sh
|
||
|
|
||
|
ITERVALUES_USERS=$(grep -rI '\.itervalues' . \
|
||
|
--exclude-dir .git \
|
||
|
--exclude-dir .tox \
|
||
|
--exclude-dir docsite \
|
||
|
| grep -v \
|
||
|
-e 'six\.itervalues' \
|
||
|
-e lib/ansible/compat/six/_six.py \
|
||
|
-e lib/ansible/module_utils/six.py \
|
||
|
-e test/sanity/code-smell/no-dict-itervalues.sh \
|
||
|
)
|
||
|
|
||
|
if [ "${ITERVALUES_USERS}" ]; then
|
||
|
echo 'itervalues has been removed in python3. Alternatives:'
|
||
|
echo ' for VALUE in DICT.values():'
|
||
|
echo ' from ansible.module_utils.six import itervalues ; for VALUE in itervalues(DICT):'
|
||
|
echo ' from ansible.compat.six import itervalues ; for VALUE in itervalues(DICT):'
|
||
|
echo "${ITERVALUES_USERS}"
|
||
|
exit 1
|
||
|
fi
|