[Python-checkins] python/dist/src/Tools/freeze modulefinder.py,1.18,1.19

theller@users.sourceforge.net theller@users.sourceforge.net
Mon, 10 Jun 2002 13:05:51 -0700


Update of /cvsroot/python/python/dist/src/Tools/freeze
In directory usw-pr-cvs1:/tmp/cvs-serv434

Modified Files:
	modulefinder.py 
Log Message:
Remove the only use of a string method.
Fixes SF 564840.


Index: modulefinder.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Tools/freeze/modulefinder.py,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** modulefinder.py	18 Oct 2001 19:15:32 -0000	1.18
--- modulefinder.py	10 Jun 2002 20:05:48 -0000	1.19
***************
*** 358,362 ****
      def find_module(self, name, path):
          if path:
!             fullname = '.'.join(path)+'.'+name
          else:
              fullname = name
--- 358,362 ----
      def find_module(self, name, path):
          if path:
!             fullname = string.join(path, '.')+'.'+name
          else:
              fullname = name