Fix setting Peer TOS byte
This commit is contained in:
parent
631768f01b
commit
8249ad86ea
@ -1,6 +1,7 @@
|
||||
Deluge 1.1.1 - (In Development)
|
||||
Core:
|
||||
* Fix oldstateupgrader for those upgrading from 0.5.x
|
||||
* Fix setting Peer TOS byte
|
||||
|
||||
GtkUI:
|
||||
* Fix opening links from Help menu and others
|
||||
|
||||
@ -265,7 +265,7 @@ class PreferencesManager(component.Component):
|
||||
def _on_set_peer_tos(self, key, value):
|
||||
log.debug("setting peer_tos to: %s", value)
|
||||
try:
|
||||
self.settings.peer_tos = str(int(value, 16))
|
||||
self.settings.peer_tos = chr(int(value, 16))
|
||||
except ValueError, e:
|
||||
log.debug("Invalid tos byte: %s", e)
|
||||
return
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user