# HG changeset patch # User Marcin Kuzminski # Date 2013-05-22 20:46:51 # Node ID e39fb661998b80ac65f245b603ac9761f64aa26e # Parent 9345065b03c0d379763343f6704fa10641e8f1b9 small docstring fixes diff --git a/rhodecode/lib/vcs/subprocessio.py b/rhodecode/lib/vcs/subprocessio.py --- a/rhodecode/lib/vcs/subprocessio.py +++ b/rhodecode/lib/vcs/subprocessio.py @@ -234,7 +234,7 @@ class BufferedGenerator(): Iterator might have done reading from underlying source, but the read chunks might still be available for serving through .next() method. - @return An Event class instance. + :returns: An Event class instance. """ return self.worker.EOF @@ -245,7 +245,7 @@ class BufferedGenerator(): Iterator might have done reading from underlying source, but the read chunks might still be available for serving through .next() method. - @return An Bool value. + :returns: An Bool value. """ return self.worker.EOF.is_set()