From 108a2301f69763896e1a1f9eefefa30f91a4c945 Mon Sep 17 00:00:00 2001 From: Wojciech Kosior Date: Tue, 16 Jun 2020 13:36:14 +0200 Subject: don't print config file contents on syncing --- src/hourly.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/hourly.py b/src/hourly.py index 0d371ab..0401bc1 100755 --- a/src/hourly.py +++ b/src/hourly.py @@ -22,8 +22,6 @@ def sync_ovpn_config(cursor, vpn_id, config_path, config_hash): (config_contents,) = cursor.fetchone() - print(config_contents.tobytes()) - with open(config_path, "wb") as config_file: config_file.write(config_contents.tobytes()) -- cgit v1.2.3