예제 #1
0
파일: cli.py 프로젝트: whatever4711/escape
 def do_ee( self, line ):
     """
     Execute EE sub-commands.
     See `ee help' for the list of sub-commands.
     Without arguments, enters into the sub-command interpreter.
     """
     ee = EE(self.mn, self.stdin)
     if line.strip():
         ee.onecmd( line )
     else:
         ee.cmdloop()