Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!goblin3!goblin2!goblin.stu.neva.ru!newsfeed.xs4all.nl!newsfeed1.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: Python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.048 X-Spam-Evidence: '*H*': 0.90; '*S*': 0.00; 'subject:help': 0.08; 'skip:/ 10': 0.09; '*function*': 0.16; '-tkc': 0.16; 'from:addr:python.list': 0.16; 'from:addr:tim.thechases.com': 0.16; 'from:name:tim chase': 0.16; 'traceback.': 0.16; 'wrote:': 0.18; 'properly': 0.19; 'subject:request': 0.19; '(the': 0.22; '>>>': 0.22; 'appears': 0.22; 'issue.': 0.22; 'directory.': 0.24; 'file.': 0.24; '(or': 0.24; 'question': 0.24; 'skip:_ 20': 0.27; 'header:In-Reply-To:1': 0.27; 'to:2**1': 0.27; 'file': 0.32; 'another': 0.32; '(most': 0.33; 'skip:_ 10': 0.34; 'charset:us- ascii': 0.36; 'should': 0.36; 'to:addr:python-list': 0.38; 'previous': 0.38; 'recent': 0.39; 'does': 0.39; 'to:addr:python.org': 0.39; 'either': 0.39; 'called': 0.40; 'how': 0.40; 'read': 0.60; 'solve': 0.60; 'mentioned': 0.61; 'more': 0.64; 'email,': 0.69; ':).': 0.84; 'received:50.22': 0.84; 'skip:/ 30': 0.84; 'way)': 0.84 Date: Tue, 19 Nov 2013 11:31:28 -0600 From: Tim Chase To: Gene Heskett , Subject: Re: My first real request for help In-Reply-To: <201311191219.12402.gheskett@wdtv.com> References: <201311190431.15449.gheskett@wdtv.com> <201311191119.27188.gheskett@wdtv.com> <20131119103108.67abf14b@bigbox.christie.dr> <201311191219.12402.gheskett@wdtv.com> X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.10; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - boston.accountservergroup.com X-AntiAbuse: Original Domain - python.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - tim.thechases.com X-Get-Message-Sender-Via: boston.accountservergroup.com: authenticated_id: tim@thechases.com X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 33 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1384882203 news.xs4all.nl 15890 [2001:888:2000:d::a6]:35786 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:60013 On 2013-11-19 12:19, Gene Heskett wrote: > > On 2013-11-19 11:19, Gene Heskett wrote: > > >>> Traceback (most recent call last): > > >>> File "/usr/bin/axis", line 3326, in > > >>> > > >>> _dynamic_tabs(inifile) > > >>> > > >>> File "/usr/bin/axis", line 3182, in _dynamic_tabs > > >>> > > >>> child = Popen(cmd) > > > > > > You are suggesting I edit /usr/lib/python2.6/subprocess.py? > > > > I think Peter is suggesting that line 3182 in _dynamic_tabs should > > either read (the better way) > > Now, this is a puzzle. > _dynamic_tabs is not a file in /usr/lib/python2.6, nor does it > "grep" in that directory. > > I need another clue, how much are they? :). Doh, I misread the traceback. Looking more closely, it appears that the file in question is "/usr/bin/axis", line 3182 in the _dynamic_tabs *function* (or method), which is called at the module-level on line 3326 of the same file. Edit /usr/bin/axis to properly call Popen as mentioned in my previous email, and it should solve this issue. -tkc