Revision 71cc414ff34a3908b53f27bbc84a5f33a5453131 authored by Valentin Lorentz on 22 October 2019, 15:57:39 UTC, committed by Valentin Lorentz on 22 October 2019, 15:57:46 UTC
Broken in 8bb31a54e719af4deaa52b28c22792880492f711.

( https://github.com/ProgVal/Limnoria/commit/8bb31a54e719af4deaa52b28c22792880492f711\#diff-44309956f4d4fbbe0b8499c3d849080fL209-R212 )
1 parent d3a2964
Raw File
update_plugins_messagespot.py
import os
import pbs

pbs.cd('Admin')
for plugin in os.listdir('..'):
    path = os.path.join('..', plugin)
    print(repr(path))
    assert os.path.exists(path)
    if not os.path.isdir(path):
        print 1
        continue
    print 2
    pbs.cd(path)
    pbs.pygettext('-D', 'config.py', 'plugin.py')
back to top