Skip to content

Commit

Permalink
Fixes TypeError: '>=' not supported between instances of (#252)
Browse files Browse the repository at this point in the history
  • Loading branch information
evandrocoan authored and gatesn committed Jan 27, 2018
1 parent ff796f8 commit 099eb36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyls/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def main():
parser = argparse.ArgumentParser()
add_arguments(parser)
args = parser.parse_args()
_configure_logger(args)
_configure_logger(args.verbose, args.log_config, args.log_file)

if args.tcp:
language_server.start_tcp_lang_server(args.host, args.port, PythonLanguageServer)
Expand Down

0 comments on commit 099eb36

Please sign in to comment.