[PyMOL] Still need help with fetch and pymol 1.7

2014-01-20 Thread Lapolla, Suzanne M (HSC)
I am posting this again as I have still not figured out why I am unable to fetch or use the pdb plugin loader with pymol 1.7 I have cut/copied/pasted the error msg I get below. I have tried uninstalling and reinstalling python 2.7.6 as well as python 1.7 (I have windows 64 bit --so I tried the

Re: [PyMOL] Still need help with fetch and pymol 1.7

2014-01-20 Thread David Hall
I think there's a bug in python's code, not pymol's In the file that it describes at the end ( C:\Python27\lib\mimetypes.py ) , you should change line 250 from: except UnicodeEncodeError: to except (UnicodeEncodeError,UnicodeDecodeError): keeping the indentation in the file and so on. Then the

Re: [PyMOL] Still need help with fetch and pymol 1.7

2014-01-20 Thread Lapolla, Suzanne M (HSC)
: Re: [PyMOL] Still need help with fetch and pymol 1.7 I think there's a bug in python's code, not pymol's In the file that it describes at the end ( C:\Python27\lib\mimetypes.py ) , you should change line 250 from: except UnicodeEncodeError: to except (UnicodeEncodeError,UnicodeDecodeError

Re: [PyMOL] Still need help with fetch and pymol 1.7

2014-01-20 Thread Lapolla, Suzanne M (HSC)
Just wanted to say that your fix did solve my problem. Thanks again! From: David Hall [li...@cowsandmilk.net] Sent: Monday, January 20, 2014 8:34 AM To: Lapolla, Suzanne M (HSC) Cc: pymol-users@lists.sourceforge.net Subject: Re: [PyMOL] Still need help