I'm experiencing problems with the string format conversion in Python (v2.6.5). I tried to set a string to format like this...
os.system ('/%s/tabix' % (path) '-h -f ftp://<some_url> 4:387-388 > file.out' )
being path='home/john'
But I always get the same error
"Not enough arguments for format string"
I read the documentation, and this post Not enough arguments for format string but i can't find an appropriate answer.
Could someone help me?
Thanks in advance,
peixe