From: Daira Hopwood Date: Mon, 15 Apr 2013 20:00:53 +0000 (+0100) Subject: Fix pyflakes errors. X-Git-Url: https://git.rkrishnan.org/CLI.txt?a=commitdiff_plain;h=9edc318eca7f9fe5856fa8aa69d51f16f3a7dcc1;p=tahoe-lafs%2Ftahoe-lafs.git Fix pyflakes errors. Signed-off-by: Daira Hopwood --- diff --git a/src/allmydata/storage/backends/cloud/googlestorage/googlestorage_container.py b/src/allmydata/storage/backends/cloud/googlestorage/googlestorage_container.py index 4d407ed6..05f2f17e 100644 --- a/src/allmydata/storage/backends/cloud/googlestorage/googlestorage_container.py +++ b/src/allmydata/storage/backends/cloud/googlestorage/googlestorage_container.py @@ -7,6 +7,7 @@ http://code.google.com/p/google-api-python-client/downloads/list import urllib try: from xml.etree import cElementTree as ElementTree + ElementTree # hush pyflakes except ImportError: from xml.etree import ElementTree @@ -20,6 +21,7 @@ from twisted.web.http import UNAUTHORIZED try: from oauth2client.client import SignedJwtAssertionCredentials + SignedJwtAssertionCredentials # hush pyflakes oauth2client_available = True except ImportError: oauth2client_available = False