From 1e453c29fc0213ea4f9906c2b096c8cbe00f0261 Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Sat, 4 Aug 2018 07:36:24 +0200 Subject: [PATCH] [mod] don't need those debug prints anymore --- run.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/run.py b/run.py index fa52693..71a55cc 100644 --- a/run.py +++ b/run.py @@ -73,11 +73,9 @@ async def monitor_apps_lists(): # only support github for now :( async def get_master_commit_sha(url): - print(f">>>>>>>>>>>>>>>>>>>>>>>>>>>>> git ls-remote {url} master") command = await asyncio.create_subprocess_shell(f"git ls-remote {url} master", stdout=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE) data = await command.stdout.read() commit_sha = data.decode().strip().replace("\t", " ").split(" ")[0] - print(f">>>>>>>>>>>>>>>>>>>>>>>>>>>>> {commit_sha}") return commit_sha for app_list_name, url in APPS_LISTS.items():