This is how the formatting MUST look like, everything adjusted to the left margin
Code: Select all
from threading import Thread, Event
def emberMediaManager(emberMediaManagerThreadEvent):
eg.plugins.System.Execute(
u'C:\\Users\\Illium\\Downloads\\EmberMM-Deploy_20131122\\EmberMM-Deploy_20131122\\Ember Media Manager.exe',
u'-newauto -all -nowindow',
1,
True,
2,
u'C:\\Users\\Illium\\Downloads\\EmberMM-Deploy_20131122\\EmberMM-Deploy_20131122',
False
)
emberMediaManagerThreadEvent.set()
print "emberMediaManager thread finished"
emberMediaManagerThreadEvent = Event()
emberMediaManagerThread = Thread(
target=emberMediaManager,
args=(emberMediaManagerThreadEvent,)
)
emberMediaManagerThread.start()
print "Starting emberMediaManager thread"
Try now the following
a) click on the 'SELECT ALL'
b) type ctrl+c or right click on the highlighted text and select 'Copy'
c) open the configuration for the python script (or make a new one starting from an empty dialog)
d) type ctrl+v or right click in the dialog and select 'Paste'
At the end, it must look exactly like this:
Best regards