From 3a27f49bffe88eb251ac44a7bdb08fb8bd17cc98 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Mon, 1 Dec 2014 15:24:38 +0800 Subject: [PATCH] frontend/runelf: use new Comm --- frontend/runelf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/runelf.py b/frontend/runelf.py index 556acf1f9..0c6e254f7 100755 --- a/frontend/runelf.py +++ b/frontend/runelf.py @@ -16,7 +16,7 @@ def main(): with open(args.file, "rb") as f: binary = f.read() - with comm_serial.CoreCom() as comm: + with comm_serial.Comm() as comm: runtime_env = comm.get_runtime_env() if args.e: print(runtime_env)