From: albertogomcas Date: Fri, 20 Jun 2008 09:06:03 +0000 (+0000) Subject: (hooke:cli.py) changed previously forgotten alphainput in do_exit X-Git-Tag: 0.9.0~87 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b657b93825574556f7a12f63c65d691f3e0bb25b;p=hooke.git (hooke:cli.py) changed previously forgotten alphainput in do_exit --- diff --git a/hooke_cli.py b/hooke_cli.py index 9630ad3..d5aa310 100755 --- a/hooke_cli.py +++ b/hooke_cli.py @@ -270,7 +270,7 @@ Syntax: genlist [input files] def do_genlist(self,args): #args list is: input path, output name if len(args)==0: - args=linp.safeinput('Input files?',[]) + args=linp.safeinput('Input files?') arglist=args.split() list_path=arglist[0] @@ -930,7 +930,7 @@ Syntax: quit if (not self.playlist_saved) or (not self.notes_saved): we_exit=linp.safeinput('You did not save your playlist and/or notes. Exit?',['n']) else: - we_exit=linp.alphainput('Exit?',['y']) + we_exit=linp.safeinput('Exit?',['y']) if we_exit[0].upper()=='Y': wx.CallAfter(self.frame.Close)