Fixed syntax issue with plugin code

This commit is contained in:
Amlesh Sivanantham (zamlz) 2018-12-27 18:39:18 -08:00
parent f12c03f13a
commit d4f79f6ecb
No known key found for this signature in database
GPG Key ID: 882C395C3B28902C

View File

@ -45,7 +45,7 @@ def git_rename(RenameEventInstance):
# Stage the changes and commit # Stage the changes and commit
GitPlugin.shell("add \*/{}.\*".format(old_key)) GitPlugin.shell("add \*/{}.\*".format(old_key))
GitPlugin.shell("add \*/{}.\*".format(new_key)) GitPlugin.shell("add \*/{}.\*".format(new_key))
GitPlugin.shell('commit -m "Renamed {} to {}"'.format(old_key, new_key) GitPlugin.shell('commit -m "Renamed {} to {}"'.format(old_key, new_key))
@RemoveEvent.listen() @RemoveEvent.listen()