Skip to content

Commit be18920

Browse files
lfiaschiparthea
authored andcommitted
BUG: Propagate command line arguments (googleapis#35)
1 parent 9dfd106 commit be18920

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

docs/source/changelog.rst

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ Changelog
44
0.1.7 / 2017-??-??
55
------------------
66

7+
- Resolve issue where the optional ``--noauth_local_webserver`` command line argument would not be propagated during the authentication process.
8+
79
0.1.6 / 2017-05-03
810
------------------
911

pandas_gbq/gbq.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ def get_user_account_credentials(self):
231231
credentials = storage.get()
232232

233233
if credentials is None or credentials.invalid or self.reauth:
234-
credentials = run_flow(flow, storage, argparser.parse_args([]))
234+
credentials = run_flow(flow, storage, argparser.parse_args())
235235

236236
return credentials
237237

0 commit comments

Comments
 (0)