Fix setting Peer TOS byte

This commit is contained in:
Andrew Resch 2009-01-21 14:03:26 +00:00
parent 631768f01b
commit 8249ad86ea
2 changed files with 2 additions and 1 deletions

View file

@ -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

View file

@ -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