This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pramod.jadhav
Recipients pramod.jadhav
Date 2014-02-28.06:48:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1393570138.08.0.290620690258.issue20802@psf.upfronthosting.co.za>
In-reply-to
Content
AttributeError                            Traceback (most recent call last)
<ipython-input-16-c985c6423e2d> in <module>()
      7 #F='C:\Users\Prashant\Documents\IPython Notebooks\resources\ch06-mailboxes'
      8 F='resources/ch06-mailboxes/data/enron.mbox.json.bz2'
----> 9 r = envoy.run("bunzip2 %s" % (F,))
     10 print r.std_out
     11 print r.std_err

C:\Anaconda\lib\site-packages\envoy\core.py in run(command, data, timeout)
    166 
    167         cmd = Command(c)
--> 168         out, err = cmd.run(data, timeout)
    169 
    170         r = Response(process=cmd)

C:\Anaconda\lib\site-packages\envoy\core.py in run(self, data, timeout)
     51             self.process=process;
     52             thread.join()
---> 53         self.returncode = self.process.returncode
     54         return self.out, self.err
     55 

AttributeError: 'NoneType' object has no attribute 'returncode'
History
Date User Action Args
2014-02-28 06:48:58pramod.jadhavsetrecipients: + pramod.jadhav
2014-02-28 06:48:58pramod.jadhavsetmessageid: <1393570138.08.0.290620690258.issue20802@psf.upfronthosting.co.za>
2014-02-28 06:48:58pramod.jadhavlinkissue20802 messages
2014-02-28 06:48:57pramod.jadhavcreate