From: Eugene Gagarin Date: Thu, 30 Apr 2009 10:40:34 +0000 (+0400) Subject: Added temporary CLI status indicator X-Git-Url: http://git.maemo.org/git/?p=findit;a=commitdiff_plain;h=44f5c4a6b061dc4de9c5be217cc459e90eaf4064 Added temporary CLI status indicator --- diff --git a/src/files/search.py b/src/files/search.py index 8215d35..6414308 100755 --- a/src/files/search.py +++ b/src/files/search.py @@ -73,6 +73,8 @@ class Abstraction(object): class Cli_Presentation(object): def __init__(self, config, start_func): + import time; global time + self.start_func = start_func self.outtype = config['outtype'] @@ -93,7 +95,11 @@ class Cli_Presentation(object): out_submodule.Cli_Presentation(results).toplevel def show_current_status(self, current_path): - pass + #pass + print '|' + '\r', + print '/' + '\r', + print '-' + '\r', + print '\\' + '\r', ### print current_path def run(self):