From ed397bf72a662eede6cda23beb281a1c0b8465d7 Mon Sep 17 00:00:00 2001 From: Nikhil Narayana Date: Thu, 5 Mar 2020 14:11:36 -0500 Subject: [PATCH] v3.5.7 add a bit of logging --- frcuploader/youtube.py | 2 ++ setup.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/frcuploader/youtube.py b/frcuploader/youtube.py index 90821cb..6a46fa6 100755 --- a/frcuploader/youtube.py +++ b/frcuploader/youtube.py @@ -129,6 +129,8 @@ def test_get_service(scope, service, secret=None): def get_service(scope, service, secret=None): CLIENT_SECRETS_FILE = get_secrets(PREFIXES, SUFFIXES) if not secret else secret + print(f"Using {CLIENT_SECRETS_FILE}") + if not CLIENT_SECRETS_FILE: return None diff --git a/setup.py b/setup.py index e7fd9da..991ae0e 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from os import path here = path.abspath(path.dirname(__file__)) -version = '3.5.6' +version = '3.5.7' long_des = "" with open(path.join(here, 'README.md')) as f: