~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to scripts/python-console

  • Committer: dcoles
  • Date: 2008-07-14 03:19:51 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:860
Console: A console server can now be asked to finish by sending a message with 
type 'terminate'.

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
            return ln['chat']
52
52
        if 'interrupt' in ln:
53
53
            raise Interrupt()
 
54
        if 'terminate' in ln:
 
55
            sys.exit(0)
 
56
            
54
57
 
55
58
class StdoutToWeb(object):
56
59
    def __init__(self, cmdQ, lineQ):