Custom Query (2447 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (235 - 237 of 2447)

Ticket Resolution Summary Owner Reporter
#3271 Fixed Support pygeoip for ip lookups Calum
Description

Alpine linux only packages the pure-python pygeoip as py3-geoip which is not the same as the MaxMind GeoIP (python3-geoip on Ubuntu).

However they packages are compatible with some minor changes:

  • deluge/core/preferencesmanager.py

    diff --git deluge/core/preferencesmanager.py deluge/core/preferencesmanager.py
    index e3c935c99..19dd3b2fb 100644
    (this hunk was shorter than expected)  
    2424from deluge._libtorrent import lt
    2525from deluge.event import ConfigValueChangedEvent
    2626
     27GeoIP = None
    2728try:
    28     import GeoIP
     29    from GeoIP import GeoIP
    2930except ImportError:
    30     GeoIP = None
     31    try:
     32        from pygeoip import GeoIP
     33    except ImportError:
     34        pass
    3135
    3236try:
    3337    from urllib.parse import quote_plus
    def _on_set_geoip_db_location(self, key, geoipdb_path):  
    464469        # Load the GeoIP DB for country look-ups if available
    465470        if os.path.exists(geoipdb_path):
    466471            try:
    467                 self.core.geoip_instance = GeoIP.open(
    468                     geoipdb_path, GeoIP.GEOIP_STANDARD
    469                 )
     472                self.core.geoip_instance = GeoIP(geoipdb_path, 0)
    470473            except AttributeError:
    471474                log.warning('GeoIP Unavailable')
    472475        else:
#3275 WontFix Contact info of forum admin Purina
Description

Hi i am unable to reister on the deluge forum. Something is wrong with the Captcha question here is a screenshot:

http://i.imgur.com/7cOb0Lv.png

I tried to join the IRC but it keeps kicking me to a room called

/delugeSpam

Because i am unable to register on the forum it also does not show me the contact info to speak with one of the admins.

English is not my primary language so I do not know the answer to the captcha question. I keep trying but it tells me maximum tries exceeded.

So can you help me by telling me the answer or by manually approving my account or by giving me the contact info of the admin so i can speak with him?

I contacted you before and you just closed my ticket in a rude manner. Why do you find the need to be rude to me? I am not your enemy. Im just trying to find help on the forum

#3278 Fixed argparserbase: exception when creating the pid file DjLegolas
Description

a user reported about a TypeError:

Jun 22 21:00:22 htpc deluged[21885]: Traceback (most recent call last):
Jun 22 21:00:22 htpc deluged[21885]:   File "/usr/bin/deluged", line 11, in <module>
Jun 22 21:00:22 htpc deluged[21885]:     load_entry_point('deluge==2.0.3', 'console_scripts', 'deluged')()
Jun 22 21:00:22 htpc deluged[21885]:   File "/usr/lib/python3.7/site-packages/deluge/core/daemon_entry.py", line 87, in start_daemon
Jun 22 21:00:22 htpc deluged[21885]:     options = parser.parse_args()
Jun 22 21:00:22 htpc deluged[21885]:   File "/usr/lib/python3.7/site-packages/deluge/argparserbase.py", line 250, in parse_args
Jun 22 21:00:22 htpc deluged[21885]:     return self._handle_ui_options(options)
Jun 22 21:00:22 htpc deluged[21885]:   File "/usr/lib/python3.7/site-packages/deluge/argparserbase.py", line 329, in _handle_ui_options
Jun 22 21:00:22 htpc deluged[21885]:     _file.write('%d\n' % os.getpid())
Jun 22 21:00:22 htpc deluged[21885]: TypeError: a bytes-like object is required, not 'str'
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.