[Zope3-checkins] CVS: ZODB4/ZODB - lock_file.py:1.10

Jeremy Hylton jeremy@zope.com
Thu, 12 Dec 2002 11:58:14 -0500


Update of /cvs-repository/ZODB4/ZODB
In directory cvs.zope.org:/tmp/cvs-serv5261/ZODB

Modified Files:
	lock_file.py 
Log Message:
Remove the last two known HTML tags in exception messages.


=== ZODB4/ZODB/lock_file.py 1.9 => 1.10 ===
--- ZODB4/ZODB/lock_file.py:1.9	Tue Dec  3 13:52:08 2002
+++ ZODB4/ZODB/lock_file.py	Thu Dec 12 11:58:14 2002
@@ -31,8 +31,7 @@
         except:
             raise StorageSystemError, (
                 "Could not lock the database file.  There must be\n"
-                "another process that has opened the file.\n"
-                "<p>")
+                "another process that has opened the file.\n")
 
 except:
     # Try windows-specific code:
@@ -49,8 +48,7 @@
             except:
                 raise StorageSystemError, (
                     "Could not lock the database file.  There must be\n"
-                    "another process that has opened the file.\n"
-                    "<p>")
+                    "another process that has opened the file.\n")
     except:
         import zLOG
         def lock_file(file):