Fix #1099 use triple quotes on docstrings

This commit is contained in:
Andrew Resch 2009-12-15 06:36:02 +00:00
parent dc9e2597da
commit 53b9cdebcd
1 changed files with 4 additions and 4 deletions

View File

@ -146,7 +146,7 @@ class Core(CorePluginBase):
## Utils ## ## Utils ##
def clean_config(self): def clean_config(self):
"remove invalid data from config-file" """remove invalid data from config-file"""
for torrent_id, label_id in list(self.torrent_labels.iteritems()): for torrent_id, label_id in list(self.torrent_labels.iteritems()):
if (not label_id in self.labels) or (not torrent_id in self.torrents): if (not label_id in self.labels) or (not torrent_id in self.torrents):
log.debug("label: rm %s:%s" % (torrent_id,label_id)) log.debug("label: rm %s:%s" % (torrent_id,label_id))
@ -191,7 +191,7 @@ class Core(CorePluginBase):
@export @export
def remove(self, label_id): def remove(self, label_id):
"remove a label" """remove a label"""
CheckInput(label_id in self.labels, _("Unknown Label")) CheckInput(label_id in self.labels, _("Unknown Label"))
del self.labels[label_id] del self.labels[label_id]
self.clean_config() self.clean_config()
@ -226,7 +226,7 @@ class Core(CorePluginBase):
) )
def _has_auto_match(self, torrent ,label_options): def _has_auto_match(self, torrent ,label_options):
"match for auto_add fields" """match for auto_add fields"""
for tracker_match in label_options["auto_add_trackers"]: for tracker_match in label_options["auto_add_trackers"]:
for tracker in torrent.trackers: for tracker in torrent.trackers:
if tracker_match in tracker["url"]: if tracker_match in tracker["url"]:
@ -299,7 +299,7 @@ class Core(CorePluginBase):
@export() @export()
def get_config(self): def get_config(self):
"see : label_set_config" """see : label_set_config"""
return dict((key, self.config[key]) for key in CORE_OPTIONS if key in self.config.config) return dict((key, self.config[key]) for key in CORE_OPTIONS if key in self.config.config)
@export() @export()