Re: AttributeError: 'module' object has no attribute 'letters'

2008-02-12 Thread black_13
On Feb 11, 5:33 pm, John Machin <[EMAIL PROTECTED]> wrote: > On Feb 12, 9:24 am,black_13<[EMAIL PROTECTED]> wrote: > > > > > > > what does this error mean? > > i am trying to use mark hammonds win32 package. > > > Traceback (most recent call last): > >   File "aui2.py", line 11, in > >     import

Re: AttributeError: 'module' object has no attribute 'letters'

2008-02-11 Thread Gabriel Genellina
En Mon, 11 Feb 2008 21:33:25 -0200, John Machin <[EMAIL PROTECTED]> escribió: > Otherwise run python from the command line with the -v option and find > where it's getting the interloper string module from. interloper: my new word of the day. Thanks! PS: Another way would be to run the script

Re: AttributeError: 'module' object has no attribute 'letters'

2008-02-11 Thread John Machin
On Feb 12, 9:24 am, black_13 <[EMAIL PROTECTED]> wrote: > what does this error mean? > i am trying to use mark hammonds win32 package. > > Traceback (most recent call last): > File "aui2.py", line 11, in > import win32com.client > File "C:\Python25\lib\site-packages\win32com\client\__init_

Re: AttributeError: 'module' object has no attribute 'letters'

2008-02-11 Thread Ben Finney
black_13 <[EMAIL PROTECTED]> writes: > what does this error mean? > [...] > valid_identifier_chars = string.letters + string.digits + "_" > AttributeError: 'module' object has no attribute 'letters' It means that you're trying to access the attribute 'letters' on a module that doesn't have th