6 Commits

3 changed files with 10 additions and 2 deletions

View File

@@ -19,6 +19,10 @@ Those can be installed using pip and the _requirements.txt_ file provided with t
Versions
--------
* test-v6
- jogobot status API enabled (Bot can be disabled onwiki)
- Fixed Problem with space between article title and anchor
* test-v5
- Feature _markpages_ working in full-automatic mode with _always_-flag

View File

@@ -297,6 +297,10 @@ class RedFamParser( RedFam ):
article[0] = article[0].replace("_", " ")
if len(article) > 1:
# Strip both parts to prevent leading/trailing spaces
article[0] = article[0].strip()
article[1] = article[1].strip()
# other way round, replace spaces with underscores in anchors
article[1] = article[1].replace(" ", "_")

4
red.py
View File

@@ -124,8 +124,8 @@ def main(*args):
# Disabled until [FS#86] is done
# Before run, we need to check wether we are currently active or not
# if not jogobot.bot.active( task_slug ):
# return
if not jogobot.bot.active( task_slug ):
return
# Parse local Args to get information about subtask
( subtask, genFactory, subtask_args ) = jogobot.bot.parse_local_args(