From 569600b607ea39a0b8214b264a73636870aea821 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Thu, 22 Jan 2015 10:38:47 +0800 Subject: [PATCH] frontend/pdq2_client: fix entry point --- artiq/frontend/pdq2_client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/artiq/frontend/pdq2_client.py b/artiq/frontend/pdq2_client.py index 3ebc027c7..d30405af9 100755 --- a/artiq/frontend/pdq2_client.py +++ b/artiq/frontend/pdq2_client.py @@ -52,7 +52,7 @@ def _get_args(): return parser.parse_args() -def _main(): +def main(): args = _get_args() dev = Client(args.server, args.port, "pdq2") dev.init() @@ -131,4 +131,4 @@ def _main(): fig.savefig(args.plot) if __name__ == "__main__": - _main() + main()