From: Greg Ercolano <erco@(email surpressed)>
Subject: Re: Python Maya submit script not fully using the path_convert
   Date: Fri, 08 Mar 2013 12:20:45 -0500
Msg# 2287
View Complete Thread (4 articles) | All Threads
Last Next
On 03/08/13 03:17, Damien Mahoney wrote:
    Short answer: looks like the fix is to make two changes:

        1) Change the following line in the lib/RushSubmit.py script:

        BEFORE:   
scriptpath_ = scriptpath.replace("\\","/")
        AFTER:     scriptpath_ = RushSiteSettings.FixPath(scriptpath.replace("\\","/"))

        2) Change the following line in the lib/RushSiteSettings.py script.

        BEFORE:
  
path = Rush.FrontSlashes(path)
        AFTER:     path = Rush.PathConvert(Rush.FrontSlashes(path))

    So to be specific, in your case you'd edit these two scripts on your file server:
        //YETY/drive/rushscripts/python/lib/RushSubmit.py
   
//YETY/drive/rushscripts/python/lib/RushSiteSettings.py

This works a charm. Thank you!

        Great -- this will be fixed in 103.03.


Last Next