Changeset 7f6086


Ignore:
Timestamp:
05/09/2010 07:05:22 AM (15 years ago)
Author:
John Garland <johnnybg+deluge@gmail.com>
Branches:
2.0.x, develop, extjs4-port, master
Children:
ba514f
Parents:
71d883
Message:

Update docstrings to use names from previous commit

File:
1 edited

Legend:

Unmodified
Added
Removed
  • deluge/ui/tracker_icons.py

    r71d883 r7f6086  
    126126        Initialises a new TrackerIcons object
    127127
    128         :param dir: the (optional) directory of where to store the icons
    129         :type dir: string
    130         :param noIcon: the (optional) path name of the icon to show when no icon
     128        :param icon_dir: the (optional) directory of where to store the icons
     129        :type icon_dir: string
     130        :param no_icon: the (optional) path name of the icon to show when no icon
    131131                       can be fetched
    132         :type noIcon: string
     132        :type no_icon: string
    133133        """
    134134        Component.__init__(self, "TrackerIcons")
     
    141141        self.icons = {}
    142142        for icon in os.listdir(self.dir):
    143             if icon != noIcon:
     143            if icon != no_icon:
    144144                host = icon_name_to_host(icon)
    145145                try:
Note: See TracChangeset for help on using the changeset viewer.