We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9dfd106 commit be18920Copy full SHA for be18920
docs/source/changelog.rst
@@ -4,6 +4,8 @@ Changelog
4
0.1.7 / 2017-??-??
5
------------------
6
7
+- Resolve issue where the optional ``--noauth_local_webserver`` command line argument would not be propagated during the authentication process.
8
+
9
0.1.6 / 2017-05-03
10
11
pandas_gbq/gbq.py
@@ -231,7 +231,7 @@ def get_user_account_credentials(self):
231
credentials = storage.get()
232
233
if credentials is None or credentials.invalid or self.reauth:
234
- credentials = run_flow(flow, storage, argparser.parse_args([]))
+ credentials = run_flow(flow, storage, argparser.parse_args())
235
236
return credentials
237
0 commit comments