[Pywikipedia-bugs] [Maniphest] [Commented On] T285616: Grant xqt "Member" role for wikimedia/pywikibot group at github

2021-07-02 Thread Legoktm
Legoktm added a comment.


  Great, I just approved the deepsource.io installation request for Pywikibot 
too.

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

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

To: Legoktm
Cc: Rubin16, hashar, Ladsgroup, Legoktm, Aklapper, Xqt, pywikibot-bugs-list, 
Jyoo1011, JohnsonLee01, SHEKH, Dijkstra, Khutuck, Zkhalido, Viztor, Wenyi, 
Tbscho, MayS, Mdupont, JJMC89, Dvorapa, Altostratus, Avicennasis, mys_721tx, 
jayvdb, Masti, Alchimista
___
pywikibot-bugs mailing list -- pywikibot-bugs@lists.wikimedia.org
To unsubscribe send an email to pywikibot-bugs-le...@lists.wikimedia.org


[Pywikipedia-bugs] [Maniphest] [Commented On] T285032: Move pywikibot CI from travis-ci.org to travis-ci.com

2021-07-02 Thread Legoktm
Legoktm added a comment.


  Awesome!! fwiw the email response I got was:
  
After reviewing your open source qualifications, I am pleased to notify you 
that 25k credits were added to your account allowing you to resume running OSS 
builds. When your credits begin running low again, please reach back out to the 
Support team.

Credits Consumption Metric
OS.  # CREDITS PER STARTED BUILD MINUTE
Linux.  10
Experimental FreeBSD. 10
Windows. 20
MacOS. 50

Note: OSS credits may be used solely with respect to open source projects 
that reside on a public repository. In no event shall OSS credits be used for 
any commercial project or with respect to any project that resides on a private 
repository. Travis CI shall determine the amount of all OSS Credit allotments.

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

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

To: Legoktm
Cc: RhinosF1, Ladsgroup, Legoktm, Rubin16, hashar, Aklapper, Xqt, 
pywikibot-bugs-list, Jyoo1011, JohnsonLee01, SHEKH, Dijkstra, Khutuck, 
Zkhalido, Viztor, Wenyi, Tbscho, MayS, Mdupont, JJMC89, Dvorapa, Altostratus, 
Avicennasis, mys_721tx, jayvdb, Masti, Alchimista
___
pywikibot-bugs mailing list -- pywikibot-bugs@lists.wikimedia.org
To unsubscribe send an email to pywikibot-bugs-le...@lists.wikimedia.org


[Pywikipedia-bugs] [Maniphest] [Commented On] T286018: api_tests.TestPropertyGenerator.test_two_continuations_limited fails with AttributeError

2021-07-02 Thread matej_suchanek
matej_suchanek added a comment.


  So obviously this happened due to some server problem and non-JSON response 
where JSON is expected (except `ValueError` in `Request._json_loads`). Why this 
happened is a mystery for me, but it isn't really important. Further down:
  
  name=pywikibot/data/api.py
for param in self._params:
  if param.endswith('limit'):
# param values are stored a list of str
value = self[param][0]
if value.isdigit():  # <-- this is where it crashes
  
  
  
>>> gen.request._params
{'titles': ['1298', '1816', '1881', '1941', '1948 Winter Olympics', '2013', 
'202
1 Western North America heat wave', '50 Greatest Players in NBA History', 
'Abdur
 Razzaq Iskander', 'Adolf, King of the Romans', 'Albert I of Germany', 
'Alkaliha
lobacillus', 'All About That Bass', 'Archaeological site', 'Assassination 
of Jam
es A. Garfield', 'Balderdash', 'Baltimore and Potomac Railroad', 'Basilicas 
in t
he Catholic Church', 'Bass Strait', 'Battle of Göllheim', 'Berlin to 
Kitchener n
ame change', 'COVID-19 pandemic', 'Calendar of saints', 'Carlo Maderno', 
'Charle
s Tupper', 'Condominium', 'Contempt of court', 'Cultural Property (Japan)', 
'Dea
ths in 2021', 'Donato Bramante'], 'prop': ['info', 'categoryinfo', 
'langlinks',
'templates'], 'action': ['query'], 'indexpageids': [True], 'continue': ['', 
'',
'info', 'categoryinfo', 'templates', 'userinfo'], 'tllimit': [500], 
'lllimit': [
'5'], 'meta': ['userinfo'], 'uiprop': ['blockinfo', 'hasmsg'], 'maxlag': 
['5'],
'format': ['json'], 'llcontinue': ['68048055', 'ko'], 'tlcontinue': 
['65984422',
 '10', 'SDcat']}
>>> {key: value for key, value in gen.request._params.items() if 
key.endswith('l
imit')}
{'tllimit': [500], 'lllimit': ['5']}  # <--- int and str, respectively
  
  So "`param values are stored a list of str`" isn't always truth.

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

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

To: matej_suchanek
Cc: matej_suchanek, Aklapper, Xqt, pywikibot-bugs-list, Jyoo1011, JohnsonLee01, 
SHEKH, Dijkstra, Khutuck, Zkhalido, Viztor, Wenyi, Tbscho, MayS, Mdupont, 
JJMC89, Dvorapa, Altostratus, Avicennasis, mys_721tx, jayvdb, Masti, Alchimista
___
pywikibot-bugs mailing list -- pywikibot-bugs@lists.wikimedia.org
To unsubscribe send an email to pywikibot-bugs-le...@lists.wikimedia.org


[Pywikipedia-bugs] [Maniphest] [Closed] T213904: Implement file captions in Pywikibot

2021-07-02 Thread matej_suchanek
matej_suchanek closed this task as "Resolved".
matej_suchanek added a comment.


import pywikibot

file_repo = pywikibot.Site('commons', 'commons')
file_page = pywikibot.FilePage(file_repo, 
'Würfelzucker_--_2018_--_3564.jpg')
file_item = file_page.data_item()
caption = file_item.labels['en']  # 'Sugar cubes (2018)'

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

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

To: matej_suchanek
Cc: Zache, Framawiki, JeanFred, Addshore, Mpaa, Xqt, Aklapper, 
pywikibot-bugs-list, SandraF_WMF, abian, Jyoo1011, FRomeo_WMF, JohnsonLee01, 
SHEKH, Dijkstra, CBogen, Khutuck, Nintendofan885, Zkhalido, Viztor, JKSTNK, 
Wenyi, Tbscho, MayS, Mdupont, JJMC89, Dvorapa, Altostratus, Avicennasis, 
mys_721tx, jayvdb, Lydia_Pintscher, Masti, Alchimista
___
pywikibot-bugs mailing list -- pywikibot-bugs@lists.wikimedia.org
To unsubscribe send an email to pywikibot-bugs-le...@lists.wikimedia.org


[Pywikipedia-bugs] [Maniphest] [Unblock] T223820: Properly implement structured data access on Commons in Pywikibot

2021-07-02 Thread matej_suchanek
matej_suchanek closed subtask T213904: Implement file captions in Pywikibot as 
"Resolved".

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

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

To: matej_suchanek
Cc: FRomeo_WMF, GFontenelle_WMF, Rubin16, Xqt, Librarian_lena, 
David_Haskiya_WMSE, Dominicbm, Zache, GPSLeo, Abbe98, SandraF_WMF, JeanFred, 
matej_suchanek, Fuzheado, Lokal_Profil, Dvorapa, Aklapper, pywikibot-bugs-list, 
Multichill, Jyoo1011, JohnsonLee01, SHEKH, Dijkstra, Muchiri124, Manishsamota, 
CBogen, Khutuck, Nintendofan885, Zkhalido, Tore_Danielsson_WMSE, Viztor, 
JKSTNK, Wenyi, Ramsey-WMF, Tbscho, MayS, Mdupont, JJMC89, StuartPrior, 
Poyekhali, Altostratus, Taiwania_Justo, Avicennasis, Volker_E, Ixocactus, 
SBisson, Wong128hk, mys_721tx, Jane023, El_Grafo, Dinoguy1000, jayvdb, 
Ricordisamoa, Lydia_Pintscher, Masti, Alchimista, Steinsplitter
___
pywikibot-bugs mailing list -- pywikibot-bugs@lists.wikimedia.org
To unsubscribe send an email to pywikibot-bugs-le...@lists.wikimedia.org


[Pywikipedia-bugs] [Maniphest] [Updated] T213904: Implement file captions in Pywikibot

2021-07-02 Thread Maintenance_bot
Maintenance_bot removed a project: Patch-For-Review.

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

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

To: matej_suchanek, Maintenance_bot
Cc: Zache, Framawiki, JeanFred, Addshore, Mpaa, Xqt, Aklapper, 
pywikibot-bugs-list, SandraF_WMF, abian, Jyoo1011, FRomeo_WMF, JohnsonLee01, 
SHEKH, Dijkstra, CBogen, Khutuck, Nintendofan885, Zkhalido, Viztor, JKSTNK, 
Wenyi, Tbscho, MayS, Mdupont, JJMC89, Dvorapa, Altostratus, Avicennasis, 
mys_721tx, jayvdb, Lydia_Pintscher, Masti, Alchimista, Biggs657, Lalamarie69, 
Alter-paule, Beast1978, Un1tY, Hook696, Kent7301, joker88john, CucyNoiD, 
Gaboe420, Giuliamocci, Cpaulf30, Af420, Bsandipan, Lewizho99, Maathavan
___
pywikibot-bugs mailing list -- pywikibot-bugs@lists.wikimedia.org
To unsubscribe send an email to pywikibot-bugs-le...@lists.wikimedia.org


[Pywikipedia-bugs] [Maniphest] [Updated] T223820: Properly implement structured data access on Commons in Pywikibot

2021-07-02 Thread Maintenance_bot
Maintenance_bot removed a project: Patch-For-Review.

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

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

To: Maintenance_bot
Cc: FRomeo_WMF, GFontenelle_WMF, Rubin16, Xqt, Librarian_lena, 
David_Haskiya_WMSE, Dominicbm, Zache, GPSLeo, Abbe98, SandraF_WMF, JeanFred, 
matej_suchanek, Fuzheado, Lokal_Profil, Dvorapa, Aklapper, pywikibot-bugs-list, 
Multichill, Jyoo1011, JohnsonLee01, SHEKH, Dijkstra, Muchiri124, Manishsamota, 
CBogen, Khutuck, Nintendofan885, Zkhalido, Tore_Danielsson_WMSE, Viztor, 
JKSTNK, Wenyi, Ramsey-WMF, Tbscho, MayS, Mdupont, JJMC89, StuartPrior, 
Poyekhali, Altostratus, Taiwania_Justo, Avicennasis, Volker_E, Ixocactus, 
SBisson, Wong128hk, mys_721tx, Jane023, El_Grafo, Dinoguy1000, jayvdb, 
Ricordisamoa, Lydia_Pintscher, Masti, Alchimista, Steinsplitter, Biggs657, 
Lalamarie69, Alter-paule, Beast1978, Un1tY, Hook696, Kent7301, joker88john, 
CucyNoiD, Gaboe420, Giuliamocci, Cpaulf30, Af420, Bsandipan, Lewizho99, 
Maathavan
___
pywikibot-bugs mailing list -- pywikibot-bugs@lists.wikimedia.org
To unsubscribe send an email to pywikibot-bugs-le...@lists.wikimedia.org


[Pywikipedia-bugs] [Maniphest] [Commented On] T223820: Properly implement structured data access on Commons in Pywikibot

2021-07-02 Thread gerritbot
gerritbot added a comment.


  Change 627243 **merged** by jenkins-bot:
  
  [pywikibot/core@master] [FEAT] Minimal working example for Structured data on 
Commons
  
  https://gerrit.wikimedia.org/r/627243

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

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

To: gerritbot
Cc: FRomeo_WMF, GFontenelle_WMF, Rubin16, Xqt, Librarian_lena, 
David_Haskiya_WMSE, Dominicbm, Zache, GPSLeo, Abbe98, SandraF_WMF, JeanFred, 
matej_suchanek, Fuzheado, Lokal_Profil, Dvorapa, Aklapper, pywikibot-bugs-list, 
Multichill, Biggs657, Lalamarie69, Jyoo1011, JohnsonLee01, SHEKH, Dijkstra, 
Muchiri124, Alter-paule, Manishsamota, Beast1978, CBogen, Un1tY, Khutuck, 
Nintendofan885, Zkhalido, Hook696, Tore_Danielsson_WMSE, Kent7301, joker88john, 
Viztor, CucyNoiD, JKSTNK, Wenyi, Gaboe420, Giuliamocci, Cpaulf30, Af420, 
Ramsey-WMF, Bsandipan, Tbscho, MayS, Lewizho99, Mdupont, JJMC89, StuartPrior, 
Maathavan, Poyekhali, Altostratus, Taiwania_Justo, Avicennasis, Volker_E, 
Ixocactus, SBisson, Wong128hk, mys_721tx, Jane023, El_Grafo, Dinoguy1000, 
jayvdb, Ricordisamoa, Lydia_Pintscher, Masti, Alchimista, Steinsplitter
___
pywikibot-bugs mailing list -- pywikibot-bugs@lists.wikimedia.org
To unsubscribe send an email to pywikibot-bugs-le...@lists.wikimedia.org


[Pywikipedia-bugs] [Maniphest] [Commented On] T213904: Implement file captions in Pywikibot

2021-07-02 Thread gerritbot
gerritbot added a comment.


  Change 627243 **merged** by jenkins-bot:
  
  [pywikibot/core@master] [FEAT] Minimal working example for Structured data on 
Commons
  
  https://gerrit.wikimedia.org/r/627243

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

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

To: matej_suchanek, gerritbot
Cc: Zache, Framawiki, JeanFred, Addshore, Mpaa, Xqt, Aklapper, 
pywikibot-bugs-list, SandraF_WMF, abian, Biggs657, Lalamarie69, Jyoo1011, 
FRomeo_WMF, JohnsonLee01, SHEKH, Dijkstra, Alter-paule, Beast1978, CBogen, 
Un1tY, Khutuck, Nintendofan885, Zkhalido, Hook696, Kent7301, joker88john, 
Viztor, CucyNoiD, JKSTNK, Wenyi, Gaboe420, Giuliamocci, Cpaulf30, Af420, 
Bsandipan, Tbscho, MayS, Lewizho99, Mdupont, JJMC89, Maathavan, Dvorapa, 
Altostratus, Avicennasis, mys_721tx, jayvdb, Lydia_Pintscher, Masti, Alchimista
___
pywikibot-bugs mailing list -- pywikibot-bugs@lists.wikimedia.org
To unsubscribe send an email to pywikibot-bugs-le...@lists.wikimedia.org


[Pywikipedia-bugs] [Maniphest] [Updated] T285621: Several threading methods renamed in Python 2.6 and higher and are deprecated since Python 3.10

2021-07-02 Thread Maintenance_bot
Maintenance_bot removed a project: Patch-For-Review.

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

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

To: Xqt, Maintenance_bot
Cc: Aklapper, pywikibot-bugs-list, Xqt, Jyoo1011, JohnsonLee01, SHEKH, 
Dijkstra, Khutuck, Zkhalido, Viztor, Wenyi, Tbscho, MayS, Mdupont, JJMC89, 
Dvorapa, Altostratus, Avicennasis, mys_721tx, jayvdb, Masti, Alchimista, 
Biggs657, Lalamarie69, Alter-paule, Beast1978, Un1tY, Hook696, Kent7301, 
joker88john, CucyNoiD, Gaboe420, Giuliamocci, Cpaulf30, Af420, Bsandipan, 
Lewizho99, Maathavan
___
pywikibot-bugs mailing list -- pywikibot-bugs@lists.wikimedia.org
To unsubscribe send an email to pywikibot-bugs-le...@lists.wikimedia.org


[Pywikipedia-bugs] [Maniphest] [Triaged] T286018: api_tests.TestPropertyGenerator.test_two_continuations_limited fails with AttributeError

2021-07-02 Thread Xqt
Xqt triaged this task as "High" priority.

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

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

To: Xqt
Cc: matej_suchanek, Aklapper, Xqt, pywikibot-bugs-list, Jyoo1011, JohnsonLee01, 
SHEKH, Dijkstra, Khutuck, Zkhalido, Viztor, Wenyi, Tbscho, MayS, Mdupont, 
JJMC89, Dvorapa, Altostratus, Avicennasis, mys_721tx, jayvdb, Masti, Alchimista
___
pywikibot-bugs mailing list -- pywikibot-bugs@lists.wikimedia.org
To unsubscribe send an email to pywikibot-bugs-le...@lists.wikimedia.org


[Pywikipedia-bugs] [Maniphest] [Created] T286018: api_tests.TestPropertyGenerator.test_two_continuations_limited fails with AttributeError

2021-07-02 Thread Xqt
Xqt created this task.
Xqt added projects: Pywikibot, Pywikibot-tests.
Restricted Application added subscribers: pywikibot-bugs-list, Aklapper.

TASK DESCRIPTION
  **What happens?**:
  
==
ERROR: test_two_continuations_limited 
(tests.api_tests.TestPropertyGenerator)
Test PropertyGenerator with many limited props and continuations.
--
Traceback (most recent call last):
  File "/home/travis/build/wikimedia/pywikibot/pywikibot/data/api.py", line 
1523, in _json_loads
result = response.json()
  File 
"/home/travis/virtualenv/python3.7.9/lib/python3.7/site-packages/requests/models.py",
 line 900, in json
return complexjson.loads(self.text, **kwargs)
  File "/opt/python/3.7.9/lib/python3.7/json/__init__.py", line 348, in 
loads
return _default_decoder.decode(s)
  File "/opt/python/3.7.9/lib/python3.7/json/decoder.py", line 337, in 
decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
  File "/opt/python/3.7.9/lib/python3.7/json/decoder.py", line 355, in 
raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/travis/build/wikimedia/pywikibot/tests/api_tests.py", line 
639, in test_two_continuations_limited
for pagedata in gen:
  File "/home/travis/build/wikimedia/pywikibot/pywikibot/data/api.py", line 
2740, in __iter__
yield from super().__iter__()
  File "/home/travis/build/wikimedia/pywikibot/pywikibot/data/api.py", line 
2584, in __iter__
self.data = self.request.submit()
  File "/home/travis/build/wikimedia/pywikibot/pywikibot/data/api.py", line 
1762, in submit
result = self._json_loads(response)
  File "/home/travis/build/wikimedia/pywikibot/pywikibot/data/api.py", line 
1553, in _json_loads
if value.isdigit():
AttributeError: 'int' object has no attribute 'isdigit'
  
  https://api.travis-ci.com/v3/job/521140016/log.txt
  
  **Software version**:
  Python 3.7.9
  Pywikibot 6.4.1.dev0

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

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

To: Xqt
Cc: matej_suchanek, Aklapper, Xqt, pywikibot-bugs-list, Jyoo1011, JohnsonLee01, 
SHEKH, Dijkstra, Khutuck, Zkhalido, Viztor, Wenyi, Tbscho, MayS, Mdupont, 
JJMC89, Dvorapa, Altostratus, Avicennasis, mys_721tx, jayvdb, Masti, Alchimista
___
pywikibot-bugs mailing list -- pywikibot-bugs@lists.wikimedia.org
To unsubscribe send an email to pywikibot-bugs-le...@lists.wikimedia.org


[Pywikipedia-bugs] [Maniphest] [Closed] T285621: Several threading methods renamed in Python 2.6 and higher and are deprecated since Python 3.10

2021-07-02 Thread Xqt
Xqt closed this task as "Resolved".
Xqt claimed this task.

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

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

To: Xqt
Cc: Aklapper, pywikibot-bugs-list, Xqt, Biggs657, Lalamarie69, Jyoo1011, 
JohnsonLee01, SHEKH, Dijkstra, Alter-paule, Beast1978, Un1tY, Khutuck, 
Zkhalido, Hook696, Kent7301, joker88john, Viztor, CucyNoiD, Wenyi, Gaboe420, 
Giuliamocci, Cpaulf30, Af420, Bsandipan, Tbscho, MayS, Lewizho99, Mdupont, 
JJMC89, Maathavan, Dvorapa, Altostratus, Avicennasis, mys_721tx, jayvdb, Masti, 
Alchimista
___
pywikibot-bugs mailing list -- pywikibot-bugs@lists.wikimedia.org
To unsubscribe send an email to pywikibot-bugs-le...@lists.wikimedia.org


[Pywikipedia-bugs] [Maniphest] [Closed] T285032: Move pywikibot CI from travis-ci.org to travis-ci.com

2021-07-02 Thread Xqt
Xqt closed this task as "Resolved".
Xqt added a comment.


  4 months are over \o/
  It works again: https://travis-ci.com/github/wikimedia/pywikibot/builds
  Thanks a lot!

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

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

To: Legoktm, Xqt
Cc: RhinosF1, Ladsgroup, Legoktm, Rubin16, hashar, Aklapper, Xqt, 
pywikibot-bugs-list, Jyoo1011, JohnsonLee01, SHEKH, Dijkstra, Khutuck, 
Zkhalido, Viztor, Wenyi, Tbscho, MayS, Mdupont, JJMC89, Dvorapa, Altostratus, 
Avicennasis, mys_721tx, jayvdb, Masti, Alchimista
___
pywikibot-bugs mailing list -- pywikibot-bugs@lists.wikimedia.org
To unsubscribe send an email to pywikibot-bugs-le...@lists.wikimedia.org


[Pywikipedia-bugs] [Maniphest] [Commented On] T285621: Several threading methods renamed in Python 2.6 and higher and are deprecated since Python 3.10

2021-07-02 Thread gerritbot
gerritbot added a comment.


  Change 701685 **merged** by jenkins-bot:
  
  [pywikibot/core@master] [fix] Replace deprecated threading functions and 
methods
  
  https://gerrit.wikimedia.org/r/701685

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

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

To: gerritbot
Cc: Aklapper, pywikibot-bugs-list, Xqt, Biggs657, Lalamarie69, Jyoo1011, 
JohnsonLee01, SHEKH, Dijkstra, Alter-paule, Beast1978, Un1tY, Khutuck, 
Zkhalido, Hook696, Kent7301, joker88john, Viztor, CucyNoiD, Wenyi, Gaboe420, 
Giuliamocci, Cpaulf30, Af420, Bsandipan, Tbscho, MayS, Lewizho99, Mdupont, 
JJMC89, Maathavan, Dvorapa, Altostratus, Avicennasis, mys_721tx, jayvdb, Masti, 
Alchimista
___
pywikibot-bugs mailing list -- pywikibot-bugs@lists.wikimedia.org
To unsubscribe send an email to pywikibot-bugs-le...@lists.wikimedia.org


[Pywikipedia-bugs] [Maniphest] [Closed] T285616: Grant xqt "Member" role for wikimedia/pywikibot group at github

2021-07-02 Thread Xqt
Xqt closed this task as "Resolved".
Xqt assigned this task to Legoktm.
Xqt added a comment.


  In T285616#7190881 , 
@Legoktm wrote:
  
  > Try now?
  
  GLTM, thank you!

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

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

To: Legoktm, Xqt
Cc: Rubin16, hashar, Ladsgroup, Legoktm, Aklapper, Xqt, pywikibot-bugs-list, 
Jyoo1011, JohnsonLee01, SHEKH, Dijkstra, Khutuck, Zkhalido, Viztor, Wenyi, 
Tbscho, MayS, Mdupont, JJMC89, Dvorapa, Altostratus, Avicennasis, mys_721tx, 
jayvdb, Masti, Alchimista
___
pywikibot-bugs mailing list -- pywikibot-bugs@lists.wikimedia.org
To unsubscribe send an email to pywikibot-bugs-le...@lists.wikimedia.org