RE: [Zope] add LocalFS in python
[ From: Michael]
When I try the following python script the message 'TypeError: unsubscriptable object' appears.
Python script
container.manage_addProduct['LocalFS'].manage_addLocalFS('test ','test','c:\temp\test3')
Before anything else, you need to escape the backslashes - manage_addLocalFS('test','test','c:\\temp\\test3') Remember, you are writing a Python expression, and backslashes in strings need to be escaped. Cheers, Tom P
Tom, I don't think the backslashes need to be escaped here. Michael, without the backtrace it's difficult to identify what the problem is. The message tends to arrive when you try to index None. I suspect a default parameter is the culprit. Check the code for LocalFS--shouldn't you should be calling the constructor with keyword parameters ( name=value, name=value, etc.) rather than positional parameters. On Fri, 17 Oct 2003, Passin, Tom wrote:
[ From: Michael]
When I try the following python script the message 'TypeError: unsubscriptable object' appears.
Python script
container.manage_addProduct['LocalFS'].manage_addLocalFS('test ','test','c:\temp\test3')
Before anything else, you need to escape the backslashes -
manage_addLocalFS('test','test','c:\\temp\\test3')
Remember, you are writing a Python expression, and backslashes in strings need to be escaped.
Cheers,
Tom P
_______________________________________________ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope-announce http://mail.zope.org/mailman/listinfo/zope-dev )
On Fri, Oct 17, 2003 at 09:02:21AM -0700, Dennis Allison wrote:
Tom, I don't think the backslashes need to be escaped here.
Sure you do. "\t" is the tab character! These are plain old python strings, you always need to escape backslashes or use "raw" strings:
print 'c:\temp\test3' c: emp est3 print 'c:\\temp\\test3' c:\temp\test3 print r'c:\temp\test3' c:\temp\test3
-- Paul Winkler http://www.slinkp.com Look! Up in the sky! It's WONDER GREEN MOVER MASTURBATOR! (random hero from isometric.spaceninja.com)
participants (3)
-
Dennis Allison -
Passin, Tom -
Paul Winkler