Custom Query (2447 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (268 - 270 of 2447)

Ticket Resolution Summary Owner Reporter
#1917 Fixed UnicodeDecodeError with long torrent names OmegaPhil
Description

After apparently successfully connecting to a localhost instance of deluged via deluge-console, masses of the following occur:

exceptions.UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 8: ordinal not in range(128)

See log attached.

Client Version: 1.3.900-dev Libtorrent Version: 0.15.7.0

#2007 Fixed UnicodeDecodeError when logging to file Calum Vladimir Berezhnoy
Description

On latest git master

$ deluged --do-not-daemonize -L debug -l /home/non7top/.config/deluge/deluged.log
Traceback (most recent call last):
  File "/usr/lib/python2.7/logging/__init__.py", line 865, in emit
    stream.write(fs % msg.encode("UTF-8"))
UnicodeDecodeError: 'ascii' codec can't decode byte 0xd0 in position 104: ordinal not in range(128)
Logged from file alertmanager.py, line 124
Traceback (most recent call last):
  File "/usr/lib/python2.7/logging/__init__.py", line 865, in emit
    stream.write(fs % msg.encode("UTF-8"))
UnicodeDecodeError: 'ascii' codec can't decode byte 0xd0 in position 106: ordinal not in range(128)
Logged from file alertmanager.py, line 124
Traceback (most recent call last):
  File "/usr/lib/python2.7/logging/__init__.py", line 865, in emit
    stream.write(fs % msg.encode("UTF-8"))
UnicodeDecodeError: 'ascii' codec can't decode byte 0xd0 in position 107: ordinal not in range(128)
Logged from file alertmanager.py, line 124
Traceback (most recent call last):
  File "/usr/lib/python2.7/logging/__init__.py", line 865, in emit
    stream.write(fs % msg.encode("UTF-8"))
UnicodeDecodeError: 'ascii' codec can't decode byte 0xd0 in position 104: ordinal not in range(128)
Logged from file alertmanager.py, line 124
Traceback (most recent call last):
  File "/usr/lib/python2.7/logging/__init__.py", line 865, in emit
    stream.write(fs % msg.encode("UTF-8"))
UnicodeDecodeError: 'ascii' codec can't decode byte 0xd0 in position 104: ordinal not in range(128)
Logged from file alertmanager.py, line 124
Traceback (most recent call last):
  File "/usr/lib/python2.7/logging/__init__.py", line 865, in emit
    stream.write(fs % msg.encode("UTF-8"))
UnicodeDecodeError: 'ascii' codec can't decode byte 0xd0 in position 107: ordinal not in range(128)
Logged from file alertmanager.py, line 124
Traceback (most recent call last):
  File "/usr/lib/python2.7/logging/__init__.py", line 865, in emit
    stream.write(fs % msg.encode("UTF-8"))
UnicodeDecodeError: 'ascii' codec can't decode byte 0xd0 in position 106: ordinal not in range(128)
Logged from file alertmanager.py, line 124
Traceback (most recent call last):
  File "/usr/lib/python2.7/logging/__init__.py", line 865, in emit
    stream.write(fs % msg.encode("UTF-8"))
UnicodeDecodeError: 'ascii' codec can't decode byte 0xd0 in position 104: ordinal not in range(128)
Logged from file alertmanager.py, line 124
^C^CUnhandled error in Deferred:
Unhandled Error
Traceback (most recent call last):
  File "/usr/lib/python2.7/site-packages/twisted/internet/defer.py", line 286, in addCallbacks
    self._runCallbacks()
  File "/usr/lib/python2.7/site-packages/twisted/internet/defer.py", line 542, in _runCallbacks
    current.result = callback(current.result, *args, **kw)
  File "/usr/lib/python2.7/site-packages/deluge/component.py", line 275, in on_depends_started
    return self.components[name]._component_start()
  File "/usr/lib/python2.7/site-packages/deluge/component.py", line 126, in _component_start
    d = maybeDeferred(self.start)
--- <exception caught here> ---
  File "/usr/lib/python2.7/site-packages/twisted/internet/defer.py", line 133, in maybeDeferred
    result = f(*args, **kw)
  File "/usr/lib/python2.7/site-packages/deluge/core/torrentmanager.py", line 216, in start
    self.load_state()
  File "/usr/lib/python2.7/site-packages/deluge/core/torrentmanager.py", line 677, in load_state
    resume_data=resume_data.get(torrent_state.torrent_id))
  File "/usr/lib/python2.7/site-packages/deluge/core/torrentmanager.py", line 505, in add
    torrent = Torrent(handle, options, state, filename, magnet, owner)
  File "/usr/lib/python2.7/site-packages/deluge/core/torrent.py", line 192, in __init__
    self.set_options(self.options)
  File "/usr/lib/python2.7/site-packages/deluge/core/torrent.py", line 247, in set_options
    OPTIONS_FUNCS[key](value)
  File "/usr/lib/python2.7/site-packages/deluge/core/torrent.py", line 381, in set_file_priorities
    self.set_prioritize_first_last(self.options["prioritize_first_last_pieces"])
  File "/usr/lib/python2.7/site-packages/deluge/core/torrent.py", line 316, in set_prioritize_first_last
    slices = ti.map_block(n, 0, ti.piece_size(n))
exceptions.KeyboardInterrupt:
#3212 Fixed UnicodeDecodeError in common.get_default_download_dir Calum Calum
Description

From forum: https://forum.deluge-torrent.org/viewtopic.php?f=8&p=228974&sid=0dc2019d419175b43045df9d52efe1a2#p228974

~$ deluge
Traceback (most recent call last):
  File "/usr/bin/deluge", line 11, in <module>
    load_entry_point('deluge==2.0.0.dev7379', 'gui_scripts', 'deluge')()
  File "/usr/lib/python2.7/dist-packages/deluge/ui/ui_entry.py", line 143, in start_ui
    ui.start()
  File "/usr/lib/python2.7/dist-packages/deluge/ui/gtk3/__init__.py", line 43, in start
    from .gtkui import GtkUI
  File "/usr/lib/python2.7/dist-packages/deluge/ui/gtk3/gtkui.py", line 119, in <module>
    'choose_directory_dialog_path': get_default_download_dir(),
  File "/usr/lib/python2.7/dist-packages/deluge/common.py", line 152, in get_default_download_dir
    if not line.startswith('#') and line.startswith('XDG_DOWNLOAD_DIR'):
UnicodeDecodeError: 'ascii' codec can't decode byte 0xd0 in position 23: ordinal not in range(128)
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.