From eaef8e2af0ad1aa6d6cccf3a04188fa0cbd5b3c8 Mon Sep 17 00:00:00 2001 From: Daira Hopwood Date: Mon, 15 Apr 2013 21:00:53 +0100 Subject: [PATCH] Fix pyflakes errors. Signed-off-by: Daira Hopwood --- .../backends/cloud/googlestorage/googlestorage_container.py | 2 ++ 1 file changed, 2 insertions(+) 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 -- 2.45.2