From 98aaf08147736e18f8f6d90865a92f4c12da3c9a Mon Sep 17 00:00:00 2001 From: yankay Date: Fri, 10 Sep 2021 12:21:53 +0800 Subject: [PATCH] fix bug --- scripts/sync-to-jp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/sync-to-jp.py b/scripts/sync-to-jp.py index 70bd765..e3b0908 100644 --- a/scripts/sync-to-jp.py +++ b/scripts/sync-to-jp.py @@ -34,7 +34,7 @@ def main(): for l in lines: sync_cmds.append(skepo_sync_cmd(l)) for c in sync_cmds: - print(c) + print(c) os.system(c) if __name__ == "__main__":