Mighty people of Stackoverflow,
I want to execute
./namecoind name_new d/<name>
in a Python script with subprocess.popen where 'name' is a variable within the script. There are no spaces allowed between 'd/' and the variable. I tried this:
p = subprocess.Popen(["./namecoind", "name_new", "d/", domainname])
but this does not work, because this adds an ws between d/ and 'domainname'.
So, what to?
Thanks in advance!
Steffen