From 0c223e1d05ed4f53c883ab1c01acbd49f01f57a8 Mon Sep 17 00:00:00 2001 From: q Date: Mon, 18 Dec 2017 10:13:48 +0200 Subject: [PATCH] typo --- nandod | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nandod b/nandod index 6cab4ad..fb1abad 100755 --- a/nandod +++ b/nandod @@ -202,7 +202,7 @@ if __name__ == "__main__": UDP=threading.Thread(target=UDPserve) UDP.daemon=True UDP.start() - if options.WEBPORT > 0: + if opts.WEBPORT > 0: TCP=threading.Thread(target=TCPserve) TCP.daemon=True TCP.start() @@ -212,6 +212,6 @@ if __name__ == "__main__": except KeyboardInterrupt: print("Exiting..") server.shutdown() - if options.WEBPORT > 0: + if opts.WEBPORT > 0: HTMLserver.shutdown() sys.exit(0)