Kaydet (Commit) e8187615 authored tarafından Fred Drake's avatar Fred Drake

When guarding an import, only catch ImportError.

üst 31e18291
......@@ -533,7 +533,7 @@ if __name__ == '__main__':
import cmd
try:
import readline
except:
except ImportError:
pass
class ProfileBrowser(cmd.Cmd):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment