[Zope-Checkins] CVS: Zope/lib/python/OFS - History.py:1.14.6.2

Chris McDonough chrism@zope.com
Sun, 22 Dec 2002 18:05:27 -0500


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

Modified Files:
      Tag: Zope-2_6-branch
	History.py 
Log Message:
Prevent further complaints.


=== Zope/lib/python/OFS/History.py 1.14.6.1 => 1.14.6.2 ===
--- Zope/lib/python/OFS/History.py:1.14.6.1	Mon Dec 16 12:24:29 2002
+++ Zope/lib/python/OFS/History.py	Sun Dec 22 18:05:26 2002
@@ -36,7 +36,7 @@
 
     def commit(self, object, transaction):
         if object._p_changed:
-            raise TemporalParadox, "You can\'t change history!"
+            raise TemporalParadox, "You can't change history!"
 
     def abort(*args, **kw): pass
 
@@ -53,7 +53,7 @@
     return rev
 
 class Historian(Implicit):
-    """An Historian\'s job is to find hysterical revisions of
+    """An Historian's job is to find hysterical revisions of
     objects, given a time."""
 
     def __getitem__(self, key):
@@ -68,7 +68,7 @@
         return rev.__of__(self.aq_parent)
 
     def manage_workspace(self, REQUEST):
-        "We aren\'t real, so we delegate to that that spawned us!"
+        "We aren't real, so we delegate to that that spawned us!"
         raise 'Redirect', REQUEST['URL2']+'/manage_change_history_page'
 
 class Historical(ExtensionClass.Base):