Re: subprocess check_output

2016-01-07 Thread Chris Angelico
On Thu, Jan 7, 2016 at 9:14 PM, Marko Rauhamaa wrote: > Marko Rauhamaa : > >> Chris Angelico : >> >>> you ask the correct question of "why isn't my CSS file being read?" >> >> TL;DR > > Sorry, getting confused with homonyms: > > >>> CSS gurus suggest, along similar lines, changing the background c

Re: subprocess check_output

2016-01-07 Thread Marko Rauhamaa
Marko Rauhamaa : > Chris Angelico : > >> you ask the correct question of "why isn't my CSS file being read?" > > TL;DR Sorry, getting confused with homonyms: >> CSS gurus suggest, along similar lines, changing the background color >> of something to red. Marko -- https://mail.python.org/mailm

Re: subprocess check_output

2016-01-07 Thread Chris Angelico
On Thu, Jan 7, 2016 at 8:33 PM, me wrote: > On 2016-01-05, Chris Angelico wrote: >> Oh, and then you keep editing and save again? Nah, I've *never* done >> that... Never! > > I'm quite surprised, buddy. You should definitely try. I know, right! It's so exciting to suddenly discover that you have

Re: subprocess check_output

2016-01-05 Thread Chris Angelico
On Tue, Jan 5, 2016 at 10:15 PM, me wrote: > On 2016-01-02, Chris Angelico wrote: >> down to "whoops, I forgot to save the file" or "whoops, I was in the >> wrong directory"... > > Amen, bro. > > Exceptionally true if you ever need for some reason to put your code in > another directory, but you

Re: subprocess check_output

2016-01-05 Thread me
On 2016-01-02, Chris Angelico wrote: > down to "whoops, I forgot to save the file" or "whoops, I was in the > wrong directory"... Amen, bro. Exceptionally true if you ever need for some reason to put your code in another directory, but you forget to close the files in your editor. :D -- https:/

Re: subprocess check_output

2016-01-02 Thread Chris Angelico
On Sun, Jan 3, 2016 at 7:39 AM, Carlos Barera wrote: > Turns out it wasn't running against the server I thought it was. > Apologies for the spam. Heh. No problem. That's part of why I suggested running it from the shell. There are two possibilities: either it also fails from the shell (in which c

Re: subprocess check_output

2016-01-02 Thread Carlos Barera
Turns out it wasn't running against the server I thought it was. Apologies for the spam. -carlos On Wed, Dec 30, 2015 at 11:02 PM Cameron Simpson wrote: > On 30Dec2015 21:14, Carlos Barera wrote: > >Trying to run a specific command (ibstat) installed in /usr/sbin on an > >Ubuntu 15.04 machine

Re: subprocess check_output

2015-12-30 Thread Chris Angelico
On Thu, Dec 31, 2015 at 8:02 AM, Cameron Simpson wrote: > On 30Dec2015 21:14, Carlos Barera wrote: >> >> Trying to run a specific command (ibstat) installed in /usr/sbin on an >> Ubuntu 15.04 machine, using subprocess.check_output and getting "/bin/sh: >> /usr/sbin/ibstat: No such file or direct

Re: subprocess check_output

2015-12-30 Thread Cameron Simpson
On 30Dec2015 21:14, Carlos Barera wrote: Trying to run a specific command (ibstat) installed in /usr/sbin on an Ubuntu 15.04 machine, using subprocess.check_output and getting "/bin/sh: /usr/sbin/ibstat: No such file or directory" I tried the following: - running the command providing full pat

subprocess check_output

2015-12-30 Thread Carlos Barera
Hi, Trying to run a specific command (ibstat) installed in /usr/sbin on an Ubuntu 15.04 machine, using subprocess.check_output and getting "/bin/sh: /usr/sbin/ibstat: No such file or directory" I tried the following: - running the command providing full path - running with executable=bash - runn