blob: 2ede099798a635e51bfae274c4f3902ef3618b41 [file] [log] [blame]
#! /usr/bin/python3
import re
import os
# Main.
for root, dirs, files in os.walk("."):
for filename in files:
if "plugin.properties" in filename:
oldName = os.path.join(root, filename)
newName = re.sub(r"plugin\.properties", "bundle.properties", oldName)
os.rename(oldName, newName)