changes to fix flake8 issues

This commit is contained in:
bharnden 2019-09-10 21:01:51 -07:00
parent 1fc8d647c3
commit dee91e97bf
23 changed files with 51 additions and 1005 deletions

View file

@ -116,7 +116,8 @@ def main():
prefix = ipaddress.Ipv4Prefix("10.83.0.0/16")
session = Session(1)
if "server" in globals():
server = globals().get("server")
if server:
server.addsession(session)
# distributed setup - connect to daemon server
@ -204,7 +205,7 @@ def main():
print(
"To stop this session, use the core-cleanup script on the remote daemon server."
)
raw_input("press enter to exit")
input("press enter to exit")
if __name__ == "__main__" or __name__ == "__builtin__":