[Zope-CVS] CVS: Products/ExternalEditor/Plugins - excel.py:1.4

Chris McDonough chrism at plope.com
Tue Apr 27 16:57:06 EDT 2004


Update of /cvs-repository/Products/ExternalEditor/Plugins
In directory cvs.zope.org:/tmp/cvs-serv7914

Modified Files:
	excel.py 
Log Message:
Doh!  The false path for isAlive was a little eager. ;-)


=== Products/ExternalEditor/Plugins/excel.py 1.3 => 1.4 ===
--- Products/ExternalEditor/Plugins/excel.py:1.3	Sat Apr 24 17:19:19 2004
+++ Products/ExternalEditor/Plugins/excel.py	Tue Apr 27 16:57:05 2004
@@ -57,7 +57,7 @@
             for doc in self.excelapp.Workbooks:
                 if head == doc.Path.lower() and tail == doc.Name.lower():
                     return 1
-                return 0
+            return 0
         except pythoncom.com_error, why:
             # COM will reject the call to enumerate the docs if the user is
             # doing anything interactive at the time the call is made.  The




More information about the Zope-CVS mailing list