Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/epubadapter.py
diff options
context:
space:
mode:
authorGonzalo Odiard <godiard@gmail.com>2013-09-05 21:39:39 (GMT)
committer Gonzalo Odiard <godiard@gmail.com>2013-09-05 21:44:59 (GMT)
commit110324c5fc104c79c028b1bd3592332aa1300ece (patch)
tree1a511e431193ae9c4f5823f23e8284864785d773 /epubadapter.py
parent60f7d7d13a669234d1f46867bac01415d5de24bb (diff)
Pyflakes fixes
Diffstat (limited to 'epubadapter.py')
-rw-r--r--epubadapter.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/epubadapter.py b/epubadapter.py
index a4ff627..560bd97 100644
--- a/epubadapter.py
+++ b/epubadapter.py
@@ -90,6 +90,8 @@ class EpubViewer(epubview.EpubView):
return file_str.getvalue()
def get_more_text(self):
+ pass
+ """
if self.current_word < len(self.word_tuples):
speech.stop()
more_text = self.get_marked_words()
@@ -97,6 +99,7 @@ class EpubViewer(epubview.EpubView):
else:
if speech.reset_buttons_cb is not None:
speech.reset_buttons_cb()
+ """
def reset_text_to_speech(self):
self.current_word = 0