Harmony submit

For now so I can test it I am just skipping it. :wink:

[code]
#print self.GetBooleanPluginInfoEntryWithDefault( “IsDatabase”, False )
if True == False:
#if self.GetBooleanPluginInfoEntryWithDefault( “IsDatabase”, False ):
sceneFilename = self.GetPluginInfoEntryWithDefault( “SceneFile”, self.GetDataFilename() )
sceneFilename = RepositoryUtils.CheckPathMapping( sceneFilename )
renderArguments += " “” + sceneFilename + “”"
else:
print “yessssss”
environment = self.GetPluginInfoEntryWithDefault( “Environment”, “” )
renderArguments += " -env " + environment
job = self.GetPluginInfoEntryWithDefault( “Job”, “” )
renderArguments += " -job " + job
scene = self.GetPluginInfoEntryWithDefault( “SceneName”, “” )
renderArguments += " -scene " + scene
version = self.GetPluginInfoEntryWithDefault( “SceneVersion”, “” )
#renderArguments += " -version " + version
renderArguments += " -readonly"

    return renderArguments[/code]