Ignore:
Timestamp:
Nov 28, 2008, 12:42:04 PM (16 years ago)
Author:
rybkin
Message:

See C.L. 2

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tbroadcast/HEAD/python/tbroadcast.py

    r393 r478  
    2424from threadpool import  makeRequests
    2525from executer   import  exeCommand
     26from executer   import  getstatusoutput
    2627
    2728class Scheduler:
     
    7172    def get_current_project(self):
    7273        cmd = 'cmt show projects | grep current'
    73         status, output = commands.getstatusoutput (cmd)
     74        status, output = getstatusoutput (cmd)
     75#        status, output = commands.getstatusoutput (cmd)
    7476        if status != 0:
    7577            print output
     
    98100        cmd = 'cmt -private show cycles'
    99101        cycle_found = False
    100         status, output = commands.getstatusoutput (cmd)
     102        status, output = getstatusoutput (cmd)
     103#        status, output = commands.getstatusoutput (cmd)
    101104        if status != 0:
    102105            print output
     
    249252        else:   
    250253            cmd = 'cat ' + file       
    251         status, output = commands.getstatusoutput (cmd)
     254        status, output = getstatusoutput (cmd)
     255#        status, output = commands.getstatusoutput (cmd)
    252256        if status != 0:
    253257            print output
     
    309313    def get_current_package(self):   
    310314        cmd = 'cmt show macro package'
    311         status, output = commands.getstatusoutput (cmd)
     315        status, output = getstatusoutput (cmd)
     316#        status, output = commands.getstatusoutput (cmd)
    312317        if status != 0:
    313318            print output
     
    326331        #return os.getcwd ()
    327332        cmd = 'cmt -use='+name+' run pwd'
    328         status, output = commands.getstatusoutput (cmd)
     333        status, output = getstatusoutput (cmd)
     334#        status, output = commands.getstatusoutput (cmd)
    329335        if status != 0:
    330336            print output
Note: See TracChangeset for help on using the changeset viewer.