From 29d01993c9c430b9befbd84daaf47377b80ceea5 Mon Sep 17 00:00:00 2001 From: John Garland Date: Sun, 25 Oct 2009 13:42:11 +0000 Subject: [PATCH] Fix typo, update plugin info. --- deluge/plugins/blocklist/blocklist/detect.py | 2 +- deluge/plugins/blocklist/setup.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/deluge/plugins/blocklist/blocklist/detect.py b/deluge/plugins/blocklist/blocklist/detect.py index c25ca49e7..af1450424 100644 --- a/deluge/plugins/blocklist/blocklist/detect.py +++ b/deluge/plugins/blocklist/blocklist/detect.py @@ -39,7 +39,7 @@ from readers import EmuleReader, SafePeerReader, PeerGuardianReader COMPRESSION_TYPES = { "PK" : "Zip", "\x1f\x8b" : "GZip", - "BZ" : "BZ ip2" + "BZ" : "BZip2" } DECOMPRESSERS = { diff --git a/deluge/plugins/blocklist/setup.py b/deluge/plugins/blocklist/setup.py index c97fd5494..7e76faed9 100644 --- a/deluge/plugins/blocklist/setup.py +++ b/deluge/plugins/blocklist/setup.py @@ -34,9 +34,9 @@ from setuptools import setup __plugin_name__ = "Blocklist" -__author__ = "Andrew Resch" -__author_email__ = "andrew.resch@gmail.com" -__version__ = "1.0" +__author__ = "John Garland" +__author_email__ = "johnnybg@gmail.com" +__version__ = "1.2" __url__ = "http://deluge-torrent.org" __license__ = "GPLv3" __description__ = "Download and import IP blocklists"