Update of /cvsroot/pythoncard/PythonCard
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17757
Modified Files:
util.py
Log Message:
Fix silly typo.
Index: util.py
===================================================================
RCS file: /cvsroot/pythoncard/PythonCard/util.py,v
retrieving revision 1.37
retrieving revision 1.38
diff -C2 -d -r1.37 -r1.38
*** util.py 11 May 2005 09:17:21 -0000 1.37
--- util.py 18 May 2005 22:12:17 -0000 1.38
***************
*** 390,394 ****
# Protect against the case where one of the parameters is 'None'
# e.g. in the resourceEditor before the resource file has been saved
! if not pi: p1 = ''
if not p2: p2 = ''
(common,l1,l2) = commonpath(pathsplit(p1), pathsplit(p2))
--- 390,394 ----
# Protect against the case where one of the parameters is 'None'
# e.g. in the resourceEditor before the resource file has been saved
! if not p1: p1 = ''
if not p2: p2 = ''
(common,l1,l2) = commonpath(pathsplit(p1), pathsplit(p2))
|