generated from Lerking/python-module-repo-template
9 lines
279 B
Python
9 lines
279 B
Python
import configparser
|
|
|
|
config = configparser.ConfigParser()
|
|
config.read('src/pluginlib/pluginlib.ini')
|
|
blt = int(config['pluginlib']['build'])
|
|
blt += 1
|
|
config['pluginlib']['build'] = str(blt)
|
|
with open('src/pluginlib/pluginlib.ini', 'w') as configfile:
|
|
config.write(configfile) |