[Zope-Checkins] CVS: Zope/lib/python/Zope/Startup - ZctlLib.py:1.2.2.1

Fred L. Drake, Jr. fred@zope.com
Fri, 14 Feb 2003 17:24:13 -0500


Update of /cvs-repository/Zope/lib/python/Zope/Startup
In directory cvs.zope.org:/tmp/cvs-serv19685

Modified Files:
      Tag: new-install-branch
	ZctlLib.py 
Log Message:
remove duplicate imports


=== Zope/lib/python/Zope/Startup/ZctlLib.py 1.2 => 1.2.2.1 ===
--- Zope/lib/python/Zope/Startup/ZctlLib.py:1.2	Wed Jan 29 15:25:15 2003
+++ Zope/lib/python/Zope/Startup/ZctlLib.py	Fri Feb 14 17:24:12 2003
@@ -448,8 +448,6 @@
         self._report( 'Python Information:' )
         self._report()
 
-        import sys
-
         info = sys.version_info
         version = '%d.%d' % ( info[0], info[1] )
         if info[2]:
@@ -461,8 +459,6 @@
         self._report( '%-20s : %s' % ( 'Version', version ) )
         self._report( '%-20s : %s' % ( 'Platform', sys.platform ) )
         self._report( '%-20s : %s' % ( 'Executable', sys.executable ) )
-
-        import os
 
         self._report( '%-20s : %s' % ( 'Working directory'
                                        , os.getcwd() ) )