Revision 8981b225f1b7569d54f64e73d8823b377f201471 authored by James Lu on 06 January 2018, 18:39:05 UTC, committed by James Lu on 06 January 2018, 18:39:05 UTC
1 parent b9a159b
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