Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.freenet.ag!news2.euro.net!newsgate.cistron.nl!newsgate.news.xs4all.nl!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.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'elif': 0.04; "'python": 0.07; 'operand': 0.07; "%s'": 0.09; 'to:addr:comp.lang.python': 0.09; 'cc:addr:python-list': 0.10; 'looked': 0.10; 'subject:error': 0.11; 'template': 0.11; 'subject:python': 0.11; "skip:' 30": 0.15; "'int'": 0.16; 'f.read()': 0.16; 'subject:when': 0.16; 'unsupported': 0.16; 'skip:= 10': 0.20; 'cc:2**0': 0.23; 'this:': 0.23; 'cc:no real name:2**0': 0.24; 'command': 0.24; 'tried': 0.25; 'cc:addr:python.org': 0.25; 'header:In-Reply-To:1': 0.25; 'header:User-Agent:1': 0.26; 'guess': 0.27; "doesn't": 0.28; 'returned': 0.30; 'url:python': 0.32; 'docs': 0.33; 'received:google.com': 0.34; 'explain': 0.36; 'but': 0.36; 'url:org': 0.36; 'url:library': 0.36; 'subject:: ': 0.38; 'url:docs': 0.38; 'skip:" 10': 0.40; 'help': 0.40; 'needing': 0.62; 'close': 0.63; 'type(s)': 0.84; 'indicator': 0.91; 'url:system': 0.91 X-Received: by 10.49.24.194 with SMTP id w2mr3400059qef.42.1362666848526; Thu, 07 Mar 2013 06:34:08 -0800 (PST) Newsgroups: comp.lang.python Date: Thu, 7 Mar 2013 06:34:08 -0800 (PST) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=94.68.107.188; posting-account=DYJQ-woAAACEPH85Au2BhUVfFTfSfVa4 References: <8e17232e-5b24-4040-9215-c4bd89f34fa2@googlegroups.com> <7bfe7117-d39d-48dc-9a6f-3d57484610a8@googlegroups.com> <213cf076-4163-44fd-a8b6-b25970da1bfa@googlegroups.com> <8a2af358-542c-45d3-b334-b4cb8f7cb7cf@googlegroups.com> <7b413998-2a6f-41cb-9e6d-7ba5b006bad4@googlegroups.com> <12e70b6c-2dc6-4cb3-8731-a910a7621802@googlegroups.com> <667bb7bc-2d76-435c-a8f6-f92fb383bd20@googlegroups.com> <08b2cc58-b3ec-4f4e-bd0e-863a17e7569f@googlegroups.com> User-Agent: G2/1.0 X-Google-Web-Client: true X-Google-IP: 94.68.107.188 MIME-Version: 1.0 Subject: Re: An error when i switched from python v2.6.6 => v3.2.3 From: =?ISO-8859-7?B?zd/q7/Igw+rxMzPq?= To: comp.lang.python@googlegroups.com Content-Type: text/plain; charset=ISO-8859-1 Cc: python-list@python.org 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: , Message-ID: Lines: 24 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1362666855 news.xs4all.nl 6851 [2001:888:2000:d::a6]:52120 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:40775 Docs doesn't explain that i just take looked at http://docs.python.org/2/library/os.html#os.system I see that the return value of os.system its an indicator to as if the command inside os.system() returned successfully. So i guess ill be needing somethign like this: htmltemp = '/home/nikos/www/data/private/htmltemp' if htmlpage.endswith('.html'): f = open( "/home/nikos/www/" + htmlpage ) htmldata = f.read() elif htmlpage.endswith('.py'): os.system( 'python metrites.py > %s' ) % htmltemp f = open( htmltemp ) htmldata = f.read() template = htmldata + counter ============== which i just tried and now iam receiving this: : unsupported operand type(s) for %: 'int' and 'str' I'am very close to the solution now i cna feel it but please help a bit!