aboutsummaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-11-22 08:40:13 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-11-22 08:40:13 +0100
commite841afdabe76d370da85da0cd34c323f0e2b0c5d (patch)
tree4fe97c13df7e19839d2f6ac06e3a941c7e053ca8 /src/lib
parentUpdated translations. (diff)
downloadnewspipe-e841afdabe76d370da85da0cd34c323f0e2b0c5d.tar.gz
newspipe-e841afdabe76d370da85da0cd34c323f0e2b0c5d.tar.bz2
newspipe-e841afdabe76d370da85da0cd34c323f0e2b0c5d.zip
Renamed crawler name.
Diffstat (limited to 'src/lib')
-rwxr-xr-xsrc/lib/misc_utils.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/misc_utils.py b/src/lib/misc_utils.py
index d594c01e..7d9f55fd 100755
--- a/src/lib/misc_utils.py
+++ b/src/lib/misc_utils.py
@@ -20,9 +20,9 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
__author__ = "Cedric Bonhomme"
-__version__ = "$Revision: 1.9 $"
+__version__ = "$Revision: 1.10 $"
__date__ = "$Date: 2010/12/07 $"
-__revision__ = "$Date: 2016/01/17 $"
+__revision__ = "$Date: 2016/11/22 $"
__copyright__ = "Copyright (c) Cedric Bonhomme"
__license__ = "AGPLv3"
@@ -98,7 +98,7 @@ def opened_w_error(filename, mode="r"):
def fetch(id, feed_id=None):
"""
Fetch the feeds in a new processus.
- The "asyncio" crawler is launched with the manager.
+ The default crawler ("asyncio") is launched with the manager.
"""
cmd = [sys.executable, conf.BASE_DIR + '/manager.py', 'fetch_asyncio',
'--user_id='+str(id)]
bgstack15