Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKshitij <Kshitij@Kshitijs-MacBook-Pro.local>2012-12-15 15:54:06 (GMT)
committer Kshitij <Kshitij@Kshitijs-MacBook-Pro.local>2012-12-15 15:54:06 (GMT)
commit8b8255c25147ff64b9b156bba631d1d0aee74611 (patch)
tree13aa9f16e9704dc5259e64ef523fbd9dfcc84144
parent4dbbbbb98bf1eec564367c3479693a9a523f81f4 (diff)
fixed a .. glitchsugar-0.94
-rw-r--r--audiograb.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/audiograb.py b/audiograb.py
index 2e91c38..1de1bbe 100644
--- a/audiograb.py
+++ b/audiograb.py
@@ -405,7 +405,7 @@ class AudioGrab():
self._log_this_sample = False
self._logging_counter = 0
elif interval != 0:
- self..make_timer()
+ self.make_timer()
self._take_screenshot = screenshot
self._busy = False
@@ -413,7 +413,7 @@ class AudioGrab():
''' Log the current sample now. This method is called from the
_logging_timer object when the interval expires. '''
self._log_this_sample = True
- self..make_timer()
+ self.make_timer()
def .make_timer(self):
''' Create the next timer that will trigger data logging. '''