-
Notifications
You must be signed in to change notification settings - Fork 185
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Increase version number for #161 #218
Conversation
sshtunnel.py
Outdated
else: | ||
DEFAULT_SSH_DIRECTORY = '~/ssh' | ||
UnixStreamServer = socketserver.TCPServer | ||
StreamServer = socketserver.UnixStreamServer if os.name == 'posix' \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe it's better to mart it also private _StreamServer
@@ -59,13 +59,10 @@ | |||
DEFAULT_LOGLEVEL = logging.ERROR #: default level if no logger passed (ERROR) | |||
TRACE_LEVEL = 1 | |||
logging.addLevelName(TRACE_LEVEL, 'TRACE') | |||
DEFAULT_SSH_DIRECTORY = '~/.ssh' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe it's increases readability if we put the variable closer to SSH_CONFIG_FILE
variable. To group SSH constants together.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good to me
let's ship it :) |
No description provided.