Steve Colson

Results 2 issues of Steve Colson

Per the docs, ConfigParser is now configparser in 3.x. **init**.py, base_identity.py, and identity/rax_identity.py should be modified for: ``` python try: import configparser except ImportError: import ConfigParser as configparser ``` And...

Another low hanging fruit item, print is now a function and not a statement. Per the porting guide, print() has been backported all the way to 2.6, we just need...