Update docstrings to use names from previous commit

This commit is contained in:
John Garland 2010-05-09 17:05:22 +10:00
parent 71d8836118
commit 7f60867ae9
1 changed files with 5 additions and 5 deletions

View File

@ -125,11 +125,11 @@ class TrackerIcons(Component):
"""
Initialises a new TrackerIcons object
:param dir: the (optional) directory of where to store the icons
:type dir: string
:param noIcon: the (optional) path name of the icon to show when no icon
:param icon_dir: the (optional) directory of where to store the icons
:type icon_dir: string
:param no_icon: the (optional) path name of the icon to show when no icon
can be fetched
:type noIcon: string
:type no_icon: string
"""
Component.__init__(self, "TrackerIcons")
if not icon_dir:
@ -140,7 +140,7 @@ class TrackerIcons(Component):
self.icons = {}
for icon in os.listdir(self.dir):
if icon != noIcon:
if icon != no_icon:
host = icon_name_to_host(icon)
try:
self.icons[host] = TrackerIcon(os.path.join(self.dir, icon))