[Pywikipedia-bugs] [Maniphest] [Closed] T114913: -liverecentchanges not working

2015-10-08 Thread jayvdb
jayvdb closed this task as "Invalid".
jayvdb claimed this task.
jayvdb added a comment.

It is working for me

  $ python pwb.py listpages -lang:pt -family:wiktionary -ns:0 -liverecentchanges
 1 adoptarás
 2 adoptará
 3 adoptares
 4 adoptaremos
 5 adoptareis
 6 adoptaras
 7 adoptara
  ...

Also we have fairly good tests covering this functionality.
Note that `setup.py` requires `socketIO-client<0.6.1`

Could you try again.

If it still fails for you, please re-open and also report the version of 
socketIO_client you have installed, etc

  $ python 
  Python 2.7.5 (default, Apr 10 2015, 08:09:05) 
  [GCC 4.8.3 20140911 (Red Hat 4.8.3-7)] on linux2
  Type "help", "copyright", "credits" or "license" for more information.
  >>> import socketIO_client
  >>> socketIO_client.__version__
  '0.5.4'
  >>> quit()
  
  $ python3
  Python 3.3.2 (default, Dec  4 2014, 12:49:00) 
  [GCC 4.8.3 20140911 (Red Hat 4.8.3-7)] on linux
  Type "help", "copyright", "credits" or "license" for more information.
  >>> import socketIO_client
  >>> socketIO_client.__version__
  '0.5.4'
  >>> quit()


TASK DETAIL
  https://phabricator.wikimedia.org/T114913

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: jayvdb
Cc: jayvdb, Aklapper, Malafaya, pywikibot-bugs-list



___
pywikibot-bugs mailing list
pywikibot-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/pywikibot-bugs


[Pywikipedia-bugs] [Maniphest] [Commented On] T87169: run at least pep8 and pep257 for new changesets submitted to pywikibot/core for any user

2015-10-08 Thread hashar
hashar added a comment.

The tox envlist has:

  flake8
  flake8-py3
  flake8-docstrings-mandatory
  py26
  py27
  py34

Running all of them ends up taking 11 minutes IIRC. Potentially we could use 
detox  to have them run in parallel.

`python2.6` is no more available on Jessie. But we can keep a job running on 
Trusty where it is available.  And if we keep py26 split, we can well keep 
py27,py34 split.

What I found out is that tox supports a specific env `jenkins` which is to 
override setting when tox detects it runs under Jenkins (i.e.: when env 
variable `JENKINS_URL` is set).  We can probably abuse that feature to override 
`envlist` in Jenkins context and aggregate the lint/doc envs. So potentially:

`tox.ini`

  [tox]
  # Defaults env targets for developers
  envlist = flake8,flake8-py3,flake8-docstrings-mandatory,py26,py27,py34
  
  [testenv:jenkins]
  # Override default for Jenkins
  # The py26,py27,py34 run in their own individual jobs on WMF Jenkins
  envlist = flake8,flake8-py3,flake8-docstrings-mandatory,doc

And In Zuul:

   - name: pywikibot/core
 test:
  -- tox-flake8
  -- pywikibot-core-tox-flake8-py3-jessie
   - pywikibot-core-tox-flake8-docstrings  # non voting
  -- pywikibot-core-tox-flake8-docstrings-mandatory
   - pywikibot-core-tox-nose
   - pywikibot-core-tox-nose34-jessie
  -- tox-doc-jessie
  +- tox-jessie  # runs envs from testenv::jenkins ie: 
flake8,flake8-py3,flake8-docstrings-mandatory,doc
 gate-and-submit:
  -- tox-flake8
  -- pywikibot-core-tox-flake8-py3-jessie
  -- pywikibot-core-tox-flake8-docstrings-mandatory
   - pywikibot-core-tox-nose
   - pywikibot-core-tox-nose34-jessie
  -- tox-doc-jessie
  +- tox-jessie  # runs envs from testenv::jenkins ie: 
flake8,flake8-py3,flake8-docstrings-mandatory,doc

That aggregates flake8/doc, but that might end up being over complicated to 
maintain.

Also I noticed we run the `nose`/`nose34` envs, not the `py27`, `py34` ones.  
Maybe that can be revisited as well.


TASK DETAIL
  https://phabricator.wikimedia.org/T87169

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: jayvdb, hashar
Cc: Ricordisamoa, gerritbot, hashar, Legoktm, pywikibot-bugs-list, jayvdb, 
Aklapper, greg



___
pywikibot-bugs mailing list
pywikibot-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/pywikibot-bugs


[Pywikipedia-bugs] [Maniphest] [Retitled] T102860: Flickrripper: support flickrapi 2.x

2015-10-08 Thread jayvdb
jayvdb changed the title from "Flickrripper: Error: 112: Method 
"flickr.get.token.part.one" not found" to "Flickrripper: support flickrapi 2.x".
jayvdb edited the task description.
jayvdb triaged this task as "Normal" priority.
jayvdb set Security to None.

TASK DETAIL
  https://phabricator.wikimedia.org/T102860

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: jayvdb
Cc: Avicennasis, Platonides, jayvdb, XXN, Aklapper, ToAruShiroiNeko, 
valhallasw, pywikibot-bugs-list



___
pywikibot-bugs mailing list
pywikibot-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/pywikibot-bugs


[Pywikipedia-bugs] [Maniphest] [Raised Priority] T102860: Flickrripper: support flickrapi 2.x

2015-10-08 Thread jayvdb
jayvdb raised the priority of this task from "Normal" to "High".
jayvdb added a comment.

We need to support `flickrapi` 2.x for its Python 3 support.  Currently we are 
only using `flickrapi` 1.4 for Python 2.6.

`setup.py` and `requirements.txt` currently do not specify a desired version of 
`flickrapi`, but that is an implicit endorsement of flickrapi 2.0.   A quick 
fix would be to specify 1.4.x for Python 2.7 to reduce the impact of this bug.  
 Until that is done, this script has effectively regressed quite significantly, 
as it doesn't work with the version which setup.py/pip will install by default.

The old `get_token_part_one` method has been removed from  `flickrapi` 2.x

Here is the old 1.x method
https://bitbucket.org/sybren/flickrapi/src/9e7a28e6da6431e632ea2b1c8d6055b0b2e6cb71/flickrapi/__init__.py?at=branch-1.4=file-view-default#__init__.py-663

In 2.0, it looks like the equivalent is `get_token`

https://bitbucket.org/sybren/flickrapi/src/af963fbe4efa7395fea668b43ade4459c3327f66/flickrapi/core.py?at=default=file-view-default#core.py-525

And if get_token fails, a `authenticate_console` method can be used

https://bitbucket.org/sybren/flickrapi/src/af963fbe4efa7395fea668b43ade4459c3327f66/flickrapi/core.py?at=default=file-view-default#core.py-562


TASK DETAIL
  https://phabricator.wikimedia.org/T102860

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: jayvdb
Cc: Avicennasis, Platonides, jayvdb, XXN, Aklapper, ToAruShiroiNeko, 
valhallasw, pywikibot-bugs-list



___
pywikibot-bugs mailing list
pywikibot-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/pywikibot-bugs


[Pywikipedia-bugs] [Maniphest] [Updated] T114913: -liverecentchanges not working

2015-10-08 Thread jayvdb
jayvdb added a project: Pywikibot-pagegenerators.
jayvdb added a subscriber: jayvdb.

TASK DETAIL
  https://phabricator.wikimedia.org/T114913

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: jayvdb
Cc: jayvdb, Aklapper, Malafaya, pywikibot-bugs-list



___
pywikibot-bugs mailing list
pywikibot-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/pywikibot-bugs


[Pywikipedia-bugs] [Maniphest] [Unblock] T72987: Python 2.6 issues (tracking)

2015-10-08 Thread jayvdb
jayvdb closed blocking task T107830: flickrapi 2.1.1 and 2.0.1 do not support 
Python 2.6 as "Resolved".

TASK DETAIL
  https://phabricator.wikimedia.org/T72987

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: jayvdb
Cc: Ricordisamoa, Aklapper, jayvdb, pywikibot-bugs-list, Anshoe



___
pywikibot-bugs mailing list
pywikibot-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/pywikibot-bugs


[Pywikipedia-bugs] [Maniphest] [Commented On] T74863: add coverage report to tests

2015-10-08 Thread jayvdb
jayvdb added a comment.

Unfortunately while Pywikibot is not allowed to run all of its tests in 
Jenkins, and cant run Windows jobs in Jenkins,  
https://phabricator.wikimedia.org/T101544 wont be especially useful for 
Pywikibot.  It would provide useful results sometimes, and we should move more 
of our tests to using mock'd servers and host environments.

An object store like Swift would be useful if we can push coverage data into it 
from Travis and Appveyor.
Once we have the coverage files from various hosts, they can be combined 
 with 
`coverage combine`.

On top of that we could run a (slightly customised) shamer 
, but that doesnt add much value IMO.

What looks more interesting is SonarQube , which can 
be integrated with Jenkins 
 , as well as 
loading coverage data from files.
https://github.com/SonarSource/sonar-examples/tree/master/projects/languages/python/python-sonar-runner-coverage


TASK DETAIL
  https://phabricator.wikimedia.org/T74863

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: jayvdb
Cc: hashar, Andrew, Ladsgroup, XZise, gerritbot, Aklapper, jayvdb, 
pywikibot-bugs-list



___
pywikibot-bugs mailing list
pywikibot-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/pywikibot-bugs


[Pywikipedia-bugs] [Maniphest] [Commented On] T87169: run at least pep8 and pep257 for new changesets submitted to pywikibot/core for any user

2015-10-08 Thread jayvdb
jayvdb added a comment.

11 minutes is IMO acceptable.  That is roughly how long the jenkins job took 
before the recent upgrades.

If py26 is taking a considerable amount of that timeframe, we could kill it 
and/or replace it with a flake8-py26 which would catch 95% of the problems -- 
at least flake8-py26 would catch all the easy problems ; the hard ones can be 
handled as post-commit fixes when someone is interested.

Note, `detox` on pypi says it is Python 2 only, but this commit 

 says otherwise.


TASK DETAIL
  https://phabricator.wikimedia.org/T87169

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: jayvdb
Cc: Ricordisamoa, gerritbot, hashar, Legoktm, pywikibot-bugs-list, jayvdb, 
Aklapper, greg



___
pywikibot-bugs mailing list
pywikibot-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/pywikibot-bugs


[Pywikipedia-bugs] [Maniphest] [Changed Subscribers] T74863: add coverage report to tests

2015-10-08 Thread hashar
hashar added subscribers: Andrew, hashar.
hashar added a comment.

We have an epic task to provide pre merge code coverage report T101544: Provide 
(pre-merge) code coverage reports on patchsets 


That is blocked on T101545: Provide infrastructure to store files by 
project/branch post-merge to compare with pre-merge 
.  Potentially we could use 
OpenStack Swift which is already used to hold files for the wiki projects.

We need one for the 
https://phabricator.wikimedia.org/tag/beta-cluster-infrastructure/ to match 
production T64835: Setup a Swift cluster to match production 
. Quoting @andrew (labs ops) the last 
update was in November 2014:

> To support Swift in labs I want to allow keystone/swift authentication for 
> service users so that we can have project- or tool-wide swift accounts. This 
> requires adding a second ldap backend to keystone, and multiple keystone auth 
> backends was broken in Havana.


So as I understand it the idea is to have labs provide a per project Swift 
container where we will be able to push build artifacts such as logs / reports. 
  Zuul has the support to pass Swift related parameters to jobs.


TASK DETAIL
  https://phabricator.wikimedia.org/T74863

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: hashar
Cc: hashar, Andrew, Ladsgroup, XZise, gerritbot, Aklapper, jayvdb, 
pywikibot-bugs-list



___
pywikibot-bugs mailing list
pywikibot-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/pywikibot-bugs


[Pywikipedia-bugs] [Maniphest] [Changed Subscribers] T87216: Implement Cirrus' category intersections in pywikibot

2015-10-08 Thread Shrutika719
Shrutika719 added a subscriber: Shrutika719.

TASK DETAIL
  https://phabricator.wikimedia.org/T87216

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Shrutika719
Cc: Shrutika719, Bawolff, NiharikaKohli, Qgil, Quiddity, XZise, Mpaa, 
Manybubbles, Aklapper, waldyrious, jayvdb, pywikibot-bugs-list, Deskana, Jay8g, 
jeremyb



___
pywikibot-bugs mailing list
pywikibot-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/pywikibot-bugs


[Pywikipedia-bugs] [Maniphest] [Changed Subscribers] T57081: implement support for Flagged Revisions in Pywikibot

2015-10-08 Thread Shrutika719
Shrutika719 added a subscriber: Shrutika719.

TASK DETAIL
  https://phabricator.wikimedia.org/T57081

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Shrutika719
Cc: Shrutika719, TasneemLo, Aklapper, Qgil, jayvdb, Legoktm, Ricordisamoa, 
pywikibot-bugs-list, Jay8g



___
pywikibot-bugs mailing list
pywikibot-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/pywikibot-bugs


[Pywikipedia-bugs] [Maniphest] [Changed Subscribers] T61678: Implement badtoken detection and recovery

2015-10-08 Thread Shrutika719
Shrutika719 added a subscriber: Shrutika719.

TASK DETAIL
  https://phabricator.wikimedia.org/T61678

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Shrutika719
Cc: Shrutika719, Mps, gerritbot, Rubin16, PhantomTech, Aklapper, Twp, 
NiharikaKohli, XZise, Sitic, Qgil, Daniel_Mietchen, jayvdb, valhallasw, 
Ricordisamoa, 555, pywikibot-bugs-list, Multichill, Ladsgroup, Billinghurst, 
Jay8g, Krenair



___
pywikibot-bugs mailing list
pywikibot-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/pywikibot-bugs


[Pywikipedia-bugs] [Maniphest] [Reassigned] T114464: Pywikibot 2.0 should be Python 2.7, 3.3 and 3.4 only

2015-10-08 Thread XZise
XZise reassigned this task from valhallasw to jayvdb.

TASK DETAIL
  https://phabricator.wikimedia.org/T114464

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: jayvdb, XZise
Cc: Ricordisamoa, XZise, Aklapper, jayvdb, pywikibot-bugs-list



___
pywikibot-bugs mailing list
pywikibot-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/pywikibot-bugs


[Pywikipedia-bugs] [Maniphest] [Commented On] T57081: implement support for Flagged Revisions in Pywikibot

2015-10-08 Thread jayvdb
jayvdb added a comment.

IMO this task would be large enough for a Outreachy/GSoC project.  There are 
multiple potential levels here, including basic API support through to specific 
tools that meet end-user needs of communities using Flagged Revs.

I am willing to be a mentor, but would want a co-mentor from a community which 
is extensively using Flagged Revs, ideally a large wiki like German Wikipedia, 
but any other wiki which had advanced/mature processes using Flagged Revs from 
one of the other larger wikis at 
https://meta.wikimedia.org/wiki/Flagged_Revisions#Other_forms_of_Flagged_Revisions


TASK DETAIL
  https://phabricator.wikimedia.org/T57081

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: jayvdb
Cc: Shrutika719, TasneemLo, Aklapper, Qgil, jayvdb, Legoktm, Ricordisamoa, 
pywikibot-bugs-list, Jay8g



___
pywikibot-bugs mailing list
pywikibot-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/pywikibot-bugs


[Pywikipedia-bugs] [Maniphest] [Changed Subscribers] T75137: Wikia family nicepath is incorrect, but is functional

2015-10-08 Thread jayvdb
jayvdb added a comment.
Herald added a subscriber: Aklapper.

In https://phabricator.wikimedia.org/T75137#770709, @Grunny wrote:

> (In reply to John Mark Vandenberg from comment #0)
>
> > However Wikia has a redirect on the server from /wiki/ to / for those sites.
>
> > 
>
> > However the /wiki/ is needed for some sites.
>
> > 
>
> > http://cs.wow.wikia.com/wiki/Hlavn%C3%AD_strana  works
>
> > 
>
> > But http://cs.wow.wikia.com/Hlavn%C3%AD_strana redirects to
>
> >  http://cs.wow.wikia.com/wiki/Speci%C3%A1ln%C3%AD:Our
>
> > 
>
> > So keeping the nicepath as /wiki/ is necessary, and we have to hope Wikia
>
> >  has redirects in place for all wikis where the wiki nice titles are not
>
> >  located at /wiki/Foo
>
>
> Yep, we do. There are only about 26 or so wikis on Wikia that use short URLs 
> without the /wiki/, the rest all use the standard /wiki/$1 article path. All 
> those that do have short URLs have redirects from /wiki/.


http://lyrics.wikia.com/wiki/Category:Artists_A and 
http://wowwiki.wikia.com/wiki/Portal:Main now use a /wiki/ nicepath.

The main website (http://www.wikia.com/) appears to still have a nicepath of ''.

How many wikis now still have a nicepath of '' ?
It might be small enough list that Pywikibot can use an explicit exception list 
on the client site, so that our nicepath is always correct.


TASK DETAIL
  https://phabricator.wikimedia.org/T75137

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: jayvdb
Cc: Aklapper, Grunny, jayvdb, pywikibot-bugs-list



___
pywikibot-bugs mailing list
pywikibot-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/pywikibot-bugs


[Pywikipedia-bugs] [Maniphest] [Commented On] T57102: listify to file option in category.py

2015-10-08 Thread Tokencolour
Tokencolour added a comment.

Hello Mpaa, 
Would it be okay, if I try to add the aforementioned capability, into 
listpages.py? It will be my first fix, (if I am able to do it).


TASK DETAIL
  https://phabricator.wikimedia.org/T57102

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Tokencolour
Cc: XZise, jayvdb, Mpaa, Aklapper, Tokencolour, Legoktm, pywikibot-bugs-list, 
Ladsgroup, 01tonythomas



___
pywikibot-bugs mailing list
pywikibot-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/pywikibot-bugs


[Pywikipedia-bugs] [Maniphest] [Unblock] T72936: Pywikibot 2.1 (tracking)

2015-10-08 Thread jayvdb
jayvdb closed blocking task T61678: Implement badtoken detection and recovery 
as "Resolved".

TASK DETAIL
  https://phabricator.wikimedia.org/T72936

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: jayvdb
Cc: Aklapper, Xqt, jayvdb, Ricordisamoa, pywikibot-bugs-list, Beta16, 
Dinoguy1000



___
pywikibot-bugs mailing list
pywikibot-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/pywikibot-bugs


[Pywikipedia-bugs] [Maniphest] [Unblock] T56311: Random api errors

2015-10-08 Thread jayvdb
jayvdb closed blocking task T61678: Implement badtoken detection and recovery 
as "Resolved".
Herald added a subscriber: Aklapper.

TASK DETAIL
  https://phabricator.wikimedia.org/T56311

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: jayvdb
Cc: Aklapper, Nemo_bis, Mpaa, Xqt, jayvdb, pywikibot-bugs-list, Multichill, 
Ladsgroup, Ricordisamoa



___
pywikibot-bugs mailing list
pywikibot-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/pywikibot-bugs


[Pywikipedia-bugs] [Maniphest] [Closed] T61678: Implement badtoken detection and recovery

2015-10-08 Thread jayvdb
jayvdb closed this task as "Resolved".
jayvdb assigned this task to XZise.

TASK DETAIL
  https://phabricator.wikimedia.org/T61678

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: XZise, jayvdb
Cc: Shrutika719, Mps, gerritbot, Rubin16, PhantomTech, Aklapper, Twp, 
NiharikaKohli, XZise, Sitic, Qgil, Daniel_Mietchen, jayvdb, valhallasw, 
Ricordisamoa, 555, pywikibot-bugs-list, Multichill, Ladsgroup, Billinghurst, 
Jay8g, Krenair



___
pywikibot-bugs mailing list
pywikibot-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/pywikibot-bugs


[Pywikipedia-bugs] [Maniphest] [Unblock] T77965: badtoken calling APISite.watch

2015-10-08 Thread jayvdb
jayvdb closed blocking task T61678: Implement badtoken detection and recovery 
as "Resolved".

TASK DETAIL
  https://phabricator.wikimedia.org/T77965

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: jayvdb
Cc: gerritbot, jayvdb, Aklapper, pywikibot-bugs-list



___
pywikibot-bugs mailing list
pywikibot-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/pywikibot-bugs


[Pywikipedia-bugs] [Maniphest] [Commented On] T61678: Implement badtoken detection and recovery

2015-10-08 Thread jayvdb
jayvdb added a comment.

There may be some corner cases still causing badtoken, but the main cases were 
solved in April 2015


TASK DETAIL
  https://phabricator.wikimedia.org/T61678

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: XZise, jayvdb
Cc: Shrutika719, Mps, gerritbot, Rubin16, PhantomTech, Aklapper, Twp, 
NiharikaKohli, XZise, Sitic, Qgil, Daniel_Mietchen, jayvdb, valhallasw, 
Ricordisamoa, 555, pywikibot-bugs-list, Multichill, Ladsgroup, Billinghurst, 
Jay8g, Krenair



___
pywikibot-bugs mailing list
pywikibot-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/pywikibot-bugs


[Pywikipedia-bugs] [Maniphest] [Commented On] T56311: Random api errors

2015-10-08 Thread jayvdb
jayvdb added a comment.

Has this problem occurred since about April 2015 when T61678: Implement 
badtoken detection and recovery  was 
fixed?


TASK DETAIL
  https://phabricator.wikimedia.org/T56311

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: jayvdb
Cc: Aklapper, Nemo_bis, Mpaa, Xqt, jayvdb, pywikibot-bugs-list, Multichill, 
Ladsgroup, Ricordisamoa



___
pywikibot-bugs mailing list
pywikibot-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/pywikibot-bugs


[Pywikipedia-bugs] [Maniphest] [Commented On] T57102: listify to file option in category.py

2015-10-08 Thread Mpaa
Mpaa added a comment.

Yepp, no need to ask for permission ...


TASK DETAIL
  https://phabricator.wikimedia.org/T57102

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Mpaa
Cc: XZise, jayvdb, Mpaa, Aklapper, Tokencolour, Legoktm, pywikibot-bugs-list, 
Ladsgroup, 01tonythomas



___
pywikibot-bugs mailing list
pywikibot-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/pywikibot-bugs