|
From: Alan G I. <ai...@am...> - 2004-08-18 21:17:35
|
On Wed, 18 Aug 2004, John Hunter apparently wrote:
> Would you mind testing it for me? I tried it on a linux and winxp
> platform and it worked. But I never had problems before on those two
> platforms so it would be helpful to try yours as well.
Seems to work fine.
I also changed font_manager.py the same way:
Change
afmpath = os.environ.get('USERPROFILE', get_data_path())
to
afmpath = get_home()
if afmpath is None: afmpath = get_data_path()
Sidenote:
recall that because of this problem, during installation
I ended up with a directory named literally
Python23\%USERPROFILE
literally. Until I removed this, get_home did not work
quite right (because the first existence test was unexpectedly true!)
So you'll want to make sure this installation problem is
also gone.
Cheers,
Alan Isaac
|