download.py: fix IDownloader to take a URI

This commit is contained in:
Brian Warner 2007-01-19 02:17:48 -07:00
parent 85c0989030
commit ca3fda3e22

View File

@ -223,7 +223,7 @@ class FileHandle:
pass
class IDownloader(Interface):
def download(verifierid, target):
def download(uri, target):
pass
class Downloader(service.MultiService):