Changeset 1bcfc9
- Timestamp:
- 05/09/2010 07:52:25 AM (15 years ago)
- Children:
- 3417ca
- Parents:
- 6ee0e5
- git-author:
- John Garland <johnnybg+deluge@gmail.com> (05/09/2010 07:39:45 AM)
- git-committer:
- John Garland <johnnybg+deluge@gmail.com> (05/09/2010 07:52:25 AM)
- Location:
- deluge/plugins/label/label
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
deluge/plugins/label/label/core.py
r6ee0e5 r1bcfc9 260 260 261 261 @export 262 def set_options(self, label_id, options_dict , apply = False):262 def set_options(self, label_id, options_dict): 263 263 """update the label options 264 264 … … 272 272 "move_completed_to":string() or None 273 273 } 274 275 apply : applies download-options to all torrents currently labelled by label_id276 274 """ 277 275 CheckInput(label_id in self.labels , _("Unknown Label")) -
deluge/plugins/label/label/gtkui/__init__.py
r6ee0e5 r1bcfc9 47 47 import submenu 48 48 49 from deluge.configmanager import ConfigManager50 config = ConfigManager("label.conf")51 49 NO_LABEL = "No Label" 52 53 50 54 51 def cell_data_label(column, cell, model, row, data): -
deluge/plugins/label/label/gtkui/submenu.py
r6ee0e5 r1bcfc9 42 42 from deluge.ui.client import client 43 43 44 from deluge.configmanager import ConfigManager45 config = ConfigManager("label.conf")46 44 NO_LABEL = "No Label" 47 45
Note:
See TracChangeset
for help on using the changeset viewer.