Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!ecngs!feeder2.ecngs.de!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; 'configure': 0.04; 'frameworks': 0.05; 'framework.': 0.07; 'line:': 0.07; "subject:' ": 0.07; 'python': 0.09; 'sep': 0.09; 'to:addr:comp.lang.python': 0.09; 'cc:addr:python-list': 0.10; 'charset:iso-8859-7': 0.15; 'sat,': 0.15; 'sure.': 0.16; 'string': 0.17; 'wrote:': 0.17; 'element': 0.17; 'written': 0.20; 'error.': 0.21; 'cc:2**0': 0.23; '15,': 0.23; 'elements': 0.23; 'cc:no real name:2**0': 0.24; 'host': 0.24; 'cc:addr:python.org': 0.25; 'header:In-Reply-To:1': 0.25; 'header:User-Agent:1': 0.26; 'guess': 0.27; 'plain': 0.27; 'possibly': 0.27; 'execution': 0.27; 'reaches': 0.27; 'subject:list': 0.28; 'chris': 0.28; 'though.': 0.29; 'this.': 0.29; 'framework': 0.30; 'error': 0.30; 'code': 0.31; 'switch': 0.32; 'getting': 0.33; 'version': 0.34; 'changed': 0.34; 'received:google.com': 0.34; 'list': 0.35; 'returning': 0.35; 'pm,': 0.35; 'received:209.85': 0.35; 'list.': 0.35; 'but': 0.36; "wasn't": 0.36; 'previous': 0.37; 'received:209': 0.37; 'subject:: ': 0.38; 'mean': 0.38; 'sure': 0.38; 'page': 0.38; 'system.': 0.39; 'hello,': 0.39; 'your': 0.60; 'different': 0.63; 'visit': 0.64 Newsgroups: comp.lang.python Date: Sat, 15 Sep 2012 06:28:10 -0700 (PDT) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=94.68.84.56; posting-account=DYJQ-woAAACEPH85Au2BhUVfFTfSfVa4 References: <071ad036-77ca-42d3-b68d-0dd3e3fac43e@googlegroups.com> User-Agent: G2/1.0 X-Google-Web-Client: true X-Google-IP: 94.68.84.56 MIME-Version: 1.0 Subject: Re: cannot concatenate 'str' and 'list' objects From: =?ISO-8859-7?B?zenq/Ovh7/Igyu/98eHy?= To: comp.lang.python@googlegroups.com Content-Type: text/plain; charset=ISO-8859-7 Content-Transfer-Encoding: quoted-printable 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: 64 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1347716375 news.xs4all.nl 6903 [2001:888:2000:d::a6]:35782 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:29226 =D4=E7 =D3=DC=E2=E2=E1=F4=EF, 15 =D3=E5=F0=F4=E5=EC=E2=F1=DF=EF=F5 2012 3:3= 4:34 =EC.=EC. UTC+3, =EF =F7=F1=DE=F3=F4=E7=F2 Chris Angelico =DD=E3=F1=E1= =F8=E5: > On Sat, Sep 15, 2012 at 10:22 PM, =CD=E9=EA=FC=EB=E1=EF=F2 =CA=EF=FD=F1= =E1=F2 wrote: >=20 > > Hello, >=20 > > >=20 > > I recently changed webhost and in the new one iam getting this error yo= u can see if you visit http://superhost.gr when program execution reaches t= he line: >=20 > > >=20 > > f =3D open( '../' + page ) >=20 > > >=20 > > In the previous host i wasn't getting this error. >=20 > > >=20 > > page's contents is: >=20 > > >=20 > > page =3D form.getvalue('page') >=20 >=20 >=20 > Well, clearly '../' is a string (str), and page must be a list. But >=20 > without knowing your web framework it's hard to be sure what's going >=20 > on. >=20 >=20 >=20 > My guess is that form.getvalue() is returning a list of form elements >=20 > with that name, so you have a list with one element in it. But check >=20 > your documentation to be sure. >=20 >=20 >=20 > Since this changed when you changed hosts, it may mean you now have a >=20 > completely different framework. Possibly you can configure this. >=20 > Alternatively, it may simply be a different version of the same >=20 > system. It's hard to know just based on this, though. >=20 >=20 >=20 > ChrisA Iam not using frameworks just plain python code written in Notepad++ Can you please tell me how to switch this line in order for this line to wo= rk?