* Removed `backtime` parameter from `diaspy.streams.Generic()` it's `more()` method...
[diaspy.git] / diaspy / streams.py
index 02c1ca5e6dc94b8fe3e4a885e6dee2a7a83ccb74..5a6a95a6a2b825480833614a3d5eb812fc8a20ea 100644 (file)
@@ -150,14 +150,9 @@ class Generic():
                """
                self._stream = self._obtain()
 
-       def more(self, max_time=0, backtime=86400):
+       def more(self, max_time=0):
                """Tries to download more (older posts) posts from Stream.
 
-               TODO backtime isn't used anymore.
-               Diaspora reference: https://github.com/diaspora/diaspora/blob/26a9e50ef935628c800f9a21d345057556fa5c31/app/helpers/stream_helper.rb#L48
-
-               :param backtime: how many seconds substract each time (defaults to one day)
-               :type backtime: int
                :param max_time: seconds since epoch (optional, diaspy'll figure everything on its own)
                :type max_time: int
                """