Skip to content
This repository has been archived by the owner on Feb 22, 2020. It is now read-only.

Commit

Permalink
fix(style): double quote to single quote
Browse files Browse the repository at this point in the history
  • Loading branch information
Han Xiao authored Oct 14, 2019
1 parent b80ce79 commit 2045a54
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions gnes/client/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,7 @@ def __init__(self, args):
self.logger = set_logger(self.__class__.__name__, self.args.verbose)
self.ctx = zmq.Context()
self.ctx.setsockopt(zmq.LINGER, 0)
self.logger.info("current libzmq version is %s" % zmq.zmq_version())
self.logger.info("current pyzmq version is %s" % zmq.__version__)
self.logger.info('current libzmq version is %s, pyzmq version is %s' % (zmq.zmq_version(), zmq.__version__))

self.receiver, recv_addr = build_socket(
self.ctx, self.args.host_in, self.args.port_in,
Expand Down

0 comments on commit 2045a54

Please sign in to comment.