views:

92

answers:

1

Hi all. I'm testing python subprocess and I keep getting this error:

$ python subprocess-test.py 
Traceback (most recent call last):
  File "subprocess-test.py", line 3, in <module>
    p = subprocess.Popen(['rsync', '-azP', 'rsync://cdimage.ubuntu.com/cdimage/daily-live/current/maverick-desktop-amd64.iso', '/home/roaksoax/Desktop/iso'], stdout=subprocess.PIPE)
AttributeError: 'module' object has no attribute 'Popen'

My script is:

import subprocess
p = subprocess.Popen(['rsync', '-azP', 'rsync://cdimage.ubuntu.com/cdimage/daily-live/current/maverick-desktop-amd64.iso', '/home/testing/maverick.iso'], stdout=subprocess.PIPE)

Do you guys know what might be happening?

+6  A: 

Wild guess: you have your own file called subprocess.py which is masking the standard library module.

What do you see with this?:

import subprocess
print subprocess.__file__

This will show what file is being imported as subprocess.

Ned Batchelder
This was indeed the problem! Thank you!!
btdt. Painful...
Wayne Werner