Commit f2e350a3 authored by Jeremy Hylton's avatar Jeremy Hylton

Remove unnecessary backslashes.

parent 4bd78057
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
############################################################################## ##############################################################################
"""Object Histories""" """Object Histories"""
__version__='$Revision: 1.14 $'[11:-2] __version__='$Revision: 1.15 $'[11:-2]
import Globals, ExtensionClass, difflib import Globals, ExtensionClass, difflib
from DateTime import DateTime from DateTime import DateTime
...@@ -36,7 +36,7 @@ class HystoryJar: ...@@ -36,7 +36,7 @@ class HystoryJar:
def commit(self, object, transaction): def commit(self, object, transaction):
if object._p_changed: if object._p_changed:
raise TemporalParadox, "You can\'t change history!" raise TemporalParadox, "You can't change history!"
def abort(*args, **kw): pass def abort(*args, **kw): pass
...@@ -53,7 +53,7 @@ def historicalRevision(self, serial): ...@@ -53,7 +53,7 @@ def historicalRevision(self, serial):
return rev return rev
class Historian(Implicit): 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.""" objects, given a time."""
def __getitem__(self, key): def __getitem__(self, key):
...@@ -68,7 +68,7 @@ class Historian(Implicit): ...@@ -68,7 +68,7 @@ class Historian(Implicit):
return rev.__of__(self.aq_parent) return rev.__of__(self.aq_parent)
def manage_workspace(self, REQUEST): 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' raise 'Redirect', REQUEST['URL2']+'/manage_change_history_page'
class Historical(ExtensionClass.Base): class Historical(ExtensionClass.Base):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment