From 2a9c58ca7201fdd67429b90caaf5c884718a4fc6 Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Mon, 21 Apr 2014 16:40:14 -0400 Subject: [PATCH] Correct mistake in cleanup activity --- bin/confetty | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/confetty b/bin/confetty index a8ec5bda..266b71b2 100755 --- a/bin/confetty +++ b/bin/confetty @@ -458,7 +458,7 @@ parser.add_option("-s", "--server", dest="netserver", help="Confluent instance to connect to", metavar="SERVER:PORT") opts, shellargs = parser.parse_args() -if opts.server: # going over a TLS network +if opts.netserver: # going over a TLS network session = client.Command(opts.server) else: session = client.Command()