[master/rhel7/f21] Return result of default key handling in text summary hub

Brian C. Lane bcl at redhat.com
Wed Oct 1 22:17:43 UTC 2014


'q' doesn't work from the summary hub because the return value of the
Super call wasn't being returned.

Related: rhbz#997405
---
 pyanaconda/ui/tui/hubs/summary.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pyanaconda/ui/tui/hubs/summary.py b/pyanaconda/ui/tui/hubs/summary.py
index c1b0dcf..64d43f9 100644
--- a/pyanaconda/ui/tui/hubs/summary.py
+++ b/pyanaconda/ui/tui/hubs/summary.py
@@ -123,4 +123,4 @@ class SummaryHub(TUIHub):
                 # which is the global TUI key to close the current screen
                 return False
             else:
-                super(SummaryHub, self).input(args, key)
+                return super(SummaryHub, self).input(args, key)
-- 
1.9.3



More information about the anaconda-patches mailing list