]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
Fix pyflakes warnings.
authorDaira Hopwood <david-sarah@jacaranda.org>
Thu, 18 Apr 2013 21:47:12 +0000 (22:47 +0100)
committerDaira Hopwood <daira@jacaranda.org>
Tue, 4 Aug 2015 17:20:42 +0000 (18:20 +0100)
Signed-off-by: Daira Hopwood <david-sarah@jacaranda.org>
src/allmydata/storage/backends/cloud/cloud_common.py
src/allmydata/storage/backends/cloud/msazure/msazure_container.py

index 657d96622f86d78a09b68c3dd94da950754177d3..72ac66e6f594f144601c525ced8feff10cdffe07 100644 (file)
@@ -9,7 +9,6 @@ from twisted.web.error import Error
 from twisted.web.client import FileBodyProducer, ResponseDone, Agent, HTTPConnectionPool
 from twisted.web.http_headers import Headers
 from twisted.internet.protocol import Protocol
-from twisted.internet.error import TimeoutError
 
 from zope.interface import Interface, implements
 from allmydata.interfaces import IShareBase
index 2cf09637e260864aec7daf283ce5ec4be0e34df5..a07ef7500a379b72c039d3570a568e300ea0da6f 100644 (file)
@@ -11,6 +11,7 @@ import hashlib
 import urllib
 try:
     from xml.etree import cElementTree as ElementTree
+    ElementTree  # hush pyflakes
 except ImportError:
     from xml.etree import ElementTree
 import time