From a6d5cc041ca807bf8c11bbf6a00cc48a32335c72 Mon Sep 17 00:00:00 2001 From: Luca Fiaschi Date: Wed, 10 May 2017 10:39:17 +0200 Subject: [PATCH 1/2] fix: Propagate command line arguments --- pandas_gbq/gbq.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas_gbq/gbq.py b/pandas_gbq/gbq.py index c4c6357d..e584bd8f 100644 --- a/pandas_gbq/gbq.py +++ b/pandas_gbq/gbq.py @@ -231,7 +231,7 @@ def get_user_account_credentials(self): credentials = storage.get() if credentials is None or credentials.invalid or self.reauth: - credentials = run_flow(flow, storage, argparser.parse_args([])) + credentials = run_flow(flow, storage, argparser.parse_args()) return credentials From 44aa7e80693f1836f1957bed5bc4ba374caacb7a Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Sat, 13 May 2017 11:23:33 -0400 Subject: [PATCH 2/2] Update changelog --- docs/source/changelog.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index ee364edd..677cfcc5 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -4,6 +4,8 @@ Changelog 0.1.7 / 2017-??-?? ------------------ +- Resolve issue where the optional ``--noauth_local_webserver`` command line argument would not be propagated during the authentication process. + 0.1.6 / 2017-05-03 ------------------