From: Greg Ercolano <erco@(email surpressed)>
Subject: Re: Notes field for hbatch
   Date: Mon, 22 Jul 2013 19:57:40 -0400
Msg# 2339
View Complete Thread (5 articles) | All Threads
Last Next
On 07/22/13 16:52, Mr. Daniel Browne wrote:
> The only line I can find similar to that is:
>     Rush.System("rush -fu -notes %s retry #%d of %d" % (os.environ["RUSH_FRAME"], curTry, fields["Retries"]))

	Yep, that's it.
	The problem is missing colon and quotes to protect the message string.

	Make the following changes to your script, and I believe should work:

BEFORE: Rush.System("rush -fu -notes %s retry #%d of %d" % (os.environ["RUSH_FRAME"], curTry, fields["Retries"]))
 AFTER: Rush.System("rush -fu -notes \"%s:retry #%d of %d\"" % (os.environ["RUSH_FRAME"], curTry, fields["Retries"]))

-- 
Greg Ercolano, erco@(email surpressed)
Seriss Corporation
Rush Render Queue, http://seriss.com/rush/

Tel: (Tel# suppressed)ext.23
Fax: (Tel# suppressed)
Cel: (Tel# suppressed)


Last Next