Update of /cvsroot/pywin32/pywin32/com/win32com
In directory sc8-pr-cvs1:/tmp/cvs-serv30220
Modified Files:
__init__.py
Log Message:
Correct error in my recent checkin checking win32com\gen_py exists.
Index: __init__.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32com/__init__.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** __init__.py 25 Oct 2003 06:25:25 -0000 1.7
--- __init__.py 26 Oct 2003 01:18:55 -0000 1.8
***************
*** 92,97 ****
# (gencache doesn't insist it have an __init__, but our __import__
# above does!
! __gen_path__ = os.path.abspath(
! os.path.join(win32com.__path__[0], "gen_py"))
if not os.path.isdir(__gen_path__):
# We used to dynamically create a directory under win32com -
--- 92,96 ----
# (gencache doesn't insist it have an __init__, but our __import__
# above does!
! __gen_path__ = os.path.abspath(os.path.join(__path__[0], "gen_py"))
if not os.path.isdir(__gen_path__):
# We used to dynamically create a directory under win32com -
|