saltstack-formulas / dhcpd-formula

http://docs.saltstack.com/en/latest/topics/development/conventions/formulas.html
Other
8 stars 56 forks source link

port to python3 #30

Closed bmwiedemann closed 6 years ago

bmwiedemann commented 6 years ago

python3 deprecated and dropped the has_key method but luckily the 'in' operator works in python-2.7 too

aboe76 commented 6 years ago

@bmwiedemann thanks for this quick fix

bmwiedemann commented 6 years ago

If you encounter other places that need it: perl -i -pe 's/(\w+)\.has_key\(([^)]*)\)/$2 in $1/'