Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorgan Collett <morgan.collett@gmail.com>2008-09-08 19:53:05 (GMT)
committer Morgan Collett <morgan.collett@gmail.com>2008-09-08 19:54:47 (GMT)
commite420461624f493e6716a455caaa287c2a57a6878 (patch)
treeb906003fbb3887d111b299ceea40c1d50f07b2c2
parent9a15e0205f30fbbb84cb64516bd56a1bbf29399d (diff)
#8352: Fix keep error with no document
-rw-r--r--NEWS2
-rw-r--r--readactivity.py4
2 files changed, 6 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 38a338c..3440911 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+* #8352 Fix keep error with no document (morgs)
+
50
* #7948, #7168, #6488 Fix saving to the datastore (morgs)
diff --git a/readactivity.py b/readactivity.py
index 40cd061..5cf31ad 100644
--- a/readactivity.py
+++ b/readactivity.py
@@ -247,6 +247,10 @@ class ReadActivity(activity.Activity):
search text.
"""
+ if self._tempfile is None:
+ # Workaround for closing Read with no document loaded
+ raise NotImplementedError
+
try:
self.metadata['Read_current_page'] = \
str(self._document.get_page_cache().get_current_page())