to:[EMAIL PROTECTED] Behalf Of Aubin Paul
Sent: Wednesday, March 26, 2003 9:42 PM
To: [EMAIL PROTECTED]
Subject: Re: [Freevo-users] record_daemon.py probs
Based on the line above it:
log(' Starting item (%s)' % cmd)
The log file (freevo_record.log) should contain the command being
call
Based on the line above it:
log(' Starting item (%s)' % cmd)
The log file (freevo_record.log) should contain the command being
called.
You could also check for the return value (os.system() returns the
error code)
i.e.
return = os.system(cmd)
log('%s' % return)
where the
os.system(cmd)
wa