From: “Alexandr <“popov2al@gmail.com”> Date: Sun, 12 Apr 2009 09:48:49 +0000 (+0400) Subject: changing pkgsearch.py for work with new config option X-Git-Url: https://vcs.maemo.org/git/?a=commitdiff_plain;h=006ade1ae805804184237c1dae411cfd9c6d4a71;p=findit changing pkgsearch.py for work with new config option --- diff --git a/src/pkgsearch.py b/src/pkgsearch.py index 858d55a..62fd14e 100644 --- a/src/pkgsearch.py +++ b/src/pkgsearch.py @@ -12,7 +12,7 @@ class Search_Pkg_Control(object): def __init__(self, config, show_funct): win_width = config.get('window_width') win_height = config.get('window_height') - count = config.get('default_count') + count = config.get('default_pkg_count') self.show_func = show_funct self.abstr = Search_Pkg_Abstraction() self.present = Search_Pkg_Presentation(win_width, win_height, count, self.start_search)