From d4f79f6ecbf8f38204a74c84b97dbbabfc448326 Mon Sep 17 00:00:00 2001 From: "Amlesh Sivanantham (zamlz)" Date: Thu, 27 Dec 2018 18:39:18 -0800 Subject: [PATCH] Fixed syntax issue with plugin code --- pubs/plugs/git/git.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubs/plugs/git/git.py b/pubs/plugs/git/git.py index f761adb..0fbf035 100644 --- a/pubs/plugs/git/git.py +++ b/pubs/plugs/git/git.py @@ -45,7 +45,7 @@ def git_rename(RenameEventInstance): # Stage the changes and commit GitPlugin.shell("add \*/{}.\*".format(old_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()