Page MenuHomePhabricator

only one namespace permitted
Closed, ResolvedPublic

Description

Some weekend changes made interwiki bot unusable:

D:\Py\rewrite>pwb.py interwiki -async -family:wiktionary -cleanup -start:Kategorie:Isla -array:50 -query:30 -untranslated

Traceback (most recent call last):
  File "D:\Py\rewrite\pwb.py", line 181, in <module>
    run_python_file(fn, argv, argvu)
  File "D:\Py\rewrite\pwb.py", line 75, in run_python_file
    exec(compile(source, filename, "exec"), main_mod.__dict__)
  File "D:\Py\rewrite\scripts\interwiki.py", line 2646, in <module>
    main()
  File "D:\Py\rewrite\scripts\interwiki.py", line 2537, in main
    if not genFactory.handleArg(arg):
  File "D:\Py\rewrite\pywikibot\pagegenerators.py", line 523, in handleArg
    site=self.site)
  File "D:\Py\rewrite\pywikibot\pagegenerators.py", line 633, in AllpagesPageGen
erator
    content=content)
  File "D:\Py\rewrite\pywikibot\tools.py", line 647, in wrapper
    return obj(*__args, **__kw)
  File "D:\Py\rewrite\pywikibot\site.py", line 3050, in allpages
    raise Error("allpages: only one namespace permitted.")
pywikibot.exceptions.Error: allpages: only one namespace permitted.
<class 'pywikibot.exceptions.Error'>
CRITICAL: Waiting for 1 network thread(s) to finish. Press ctrl-c to abort

I use the same command as last week, there is only one namespace, but does not work.


Version: core-(2.0)
Severity: major
See Also:
https://bugzilla.wikimedia.org/show_bug.cgi?id=73415

Details

Reference
bz73214

Related Objects

Event Timeline

bzimport raised the priority of this task from to Needs Triage.Nov 22 2014, 3:45 AM
bzimport set Reference to bz73214.
bzimport added a subscriber: Unknown Object (????).

I use PrefixingPageGenerator("Module:Abc/", None, True, site=self.site) and have the same problem.
suppling an explicit namespace int here (second param) works around that.

I think the if-clause checking for the type and raising the exception is outdated. I read somewhere that the namespace is now an object at some places and not a int anymore.

With this merged I get this exception now:
(using gen = PrefixingPageGenerator("Module:Abc/", None, True, site=self.site))

File "[...]\build\Supplier.py", line 289, in <module>
  Supplier().run(confirmEdit=True, sandbox=sandbox)
File "[...]\build\Supplier.py", line 44, in run
  liste = self.selectWorkOn()
File "[...]\build\Supplier.py", line 59, in selectWorkOn
  for page in gen:
File "[...]\build\pywikibot\data\api.py", line 1119, in __iter__
  self.data = self.request.submit()
File "[...]\build\pywikibot\data\api.py", line 710, in submit
  raise APIError(code, info, **result["error"])

pywikibot.data.api.APIError: gapunknown_gapnamespace: Unrecognized value for parameter 'gapnamespace': Module:
<class 'pywikibot.data.api.APIError'>
CRITICAL: Waiting for 1 network thread(s) to finish. Press ctrl-c to abort

gerritadmin wrote:

Change 173465 had a related patch set uploaded by Mpaa:
allpages.py: fix namespace param type

https://gerrit.wikimedia.org/r/173465

  • Bug 73415 has been marked as a duplicate of this bug. ***

gerritadmin wrote:

Change 173465 merged by jenkins-bot:
allpages.py: fix namespace param type

https://gerrit.wikimedia.org/r/173465

Thanks for the quick fix, works for me.

jayvdb set Security to None.
jayvdb removed a subscriber: Unknown Object (????).