From: Daira Hopwood <david-sarah@jacaranda.org>
Date: Mon, 15 Apr 2013 20:00:53 +0000 (+0100)
Subject: Fix pyflakes errors.
X-Git-Url: https://git.rkrishnan.org/%5B/frontends/%22file:/configuration.rst?a=commitdiff_plain;h=f6dd94465c6309aeea9204048a8130a2851793f9;p=tahoe-lafs%2Ftahoe-lafs.git

Fix pyflakes errors.

Signed-off-by: Daira Hopwood <david-sarah@jacaranda.org>
---

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