From 7d3b1ae4f7a87de20dcf2a7e9517479cda6311dc Mon Sep 17 00:00:00 2001 From: Craig Citro Date: Wed, 5 Nov 2014 08:18:32 -0800 Subject: [PATCH] Fix a misplaced __future__ import. Fixes #66. --- oauth2client/tools.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/oauth2client/tools.py b/oauth2client/tools.py index f810e18..b01f7cd 100644 --- a/oauth2client/tools.py +++ b/oauth2client/tools.py @@ -19,11 +19,11 @@ generated credentials in a common file that is used by other example apps in the same directory. """ +from __future__ import print_function + __author__ = 'jcgregorio@google.com (Joe Gregorio)' __all__ = ['argparser', 'run_flow', 'run', 'message_if_missing'] -from __future__ import print_function - import argparse import BaseHTTPServer import logging