(cmd)
| 98 | builder.is_makeing_project = False |
| 99 | |
| 100 | def ExecCmd(cmd): |
| 101 | global executor |
| 102 | if executor: |
| 103 | print 'last task does not exit' |
| 104 | return |
| 105 | |
| 106 | executor = CmdExecutor(cmd, builder) |
| 107 | executor.start() |
| 108 | |
| 109 | class DirSelectBox(ttk.Frame): |
| 110 | def __init__(self, master=None, **kw): |
no test coverage detected