tags 800693 patch
thanks
This is the patch to copy in
debian/patches and add to debian/patches/series.
--
Salvo Tomaselli
"Io non mi sento obbligato a credere che lo stesso Dio che ci ha dotato di
senso, ragione ed intelletto intendesse che noi ne facessimo a meno."
-- Galileo Galilei
http://ltworf.github.io/ltworf/
Description: Fix to accomodate changes in python-urwid
Version 3 of the package is not backwards compatible.
Origin: other https://bbs.archlinux.org/viewtopic.php?pid=1481016
Bug-Debian: https://bugs.debian.org/#800693
Forwarded: no
Reviewed-By: Salvo 'LtWorf' Tomaselli <tipos...@tiscali.it>
Last-Update: 2015-10-03
--- wicd-1.7.2.4.orig/curses/wicd-curses.py
+++ wicd-1.7.2.4/curses/wicd-curses.py
@@ -927,9 +927,10 @@ class appGUI():
if not ui._started:
return False
- input_data = ui.get_input_nonblocking()
+ ui.set_input_timeouts(max_wait=0)
+ input_data = ui.get_input()
# Resolve any "alarms" in the waiting
- self.handle_keys(input_data[1])
+ self.handle_keys(input_data)
# Update the screen
canvas = self.frame.render( (self.size),True )