Skip to content
This repository has been archived by the owner on Mar 9, 2023. It is now read-only.

Commit

Permalink
Fix python 3 input syntax for python 2 support
Browse files Browse the repository at this point in the history
In PR CZ-NIC#117 commit 4e1ae5a breaks the client_management module under Python 2 because of the change of the input builtin in Python 3
  • Loading branch information
gene1wood authored and lwm committed Apr 18, 2017
1 parent 375dd9d commit e96a4ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ The format is based on the [KeepAChangeLog] project.
### Fixed
- [#313]: Catch exception correctly
- [#319]: Fix sanitize on strings starting with "B" or "U"
- [#330]: Fix client_management user input being eval'd under Python 2

### Changed
- [#318]: `oic.utils.authn.saml` raises `ImportError` on import if optional `saml2` dependency is not present.
Expand Down
1 change: 1 addition & 0 deletions src/oic/utils/client_management.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import os
import shelve
import sys
from builtins import input

from oic import rndstr
from oic.oic.provider import secret
Expand Down

0 comments on commit e96a4ea

Please sign in to comment.