Event Plugin - Type of Job

I’m trying to set a Event Plugin to only be active on DraftTileAssembler Jobs.

[code] ## This is called when the job finishes rendering.
def OnJobFinished( self, job ):
ClientUtils.LogText( “Checking job for repathing options…” )

	pluginName = job.GetPluginInfoEntry( "PluginName" )
	if pluginName == "DraftTileAssembler":[/code]

Event Error (OnJobFinished): AttributeError : ‘Job’ object has no attribute ‘GetPluginInfoEntry’

I always get confused getting job values…

I would do the following, so that the event plugin exits as quickly as possible, as it’s firing for all jobs in the queue

[code] ## This is called when the job finishes rendering.
def OnJobFinished( self, job ):
ClientUtils.LogText( “Checking job for repathing options…” )

  if job.JobPlugin != "DraftTileAssembler":
      return

  do stuff here...

[/code]