good evening
I can not create a label in Cyrillic deluge 1.3.5
trying to do here as http://forum.deluge-torrent.org/viewtop ... dd#p159761 (https://bugs.launchpad.net/ubuntu/+sour ... bug/854648)
that does not happen, the labels are not created
how to solve the problem?
do not add tags Cyrillic deluge 1.3.5
Re: do not add tags Cyrillic deluge 1.3.5
It is mentioned that the plugin only accepts a-z letters.
Re: do not add tags Cyrillic deluge 1.3.5
problem was solved
edited plugin file Label-0.2.egg core.py
replace the line
on
add the first line of the file
it is now possible to create a label in Cyrillic
p.s. Developers, take note of this!
edited plugin file Label-0.2.egg core.py
replace the line
Code: Select all
RE_VALID = re.compile("[a-z0-9_\-\.]*\Z")
Code: Select all
RE_VALID = re.compile("[а-яa-z0-9_\-\.]*")
Code: Select all
# -*- coding: utf-8 -*-
p.s. Developers, take note of this!