diff --git a/pubs/plugs/git/git.py b/pubs/plugs/git/git.py index 99cbdc9..a76c5a6 100644 --- a/pubs/plugs/git/git.py +++ b/pubs/plugs/git/git.py @@ -26,9 +26,7 @@ class GitPlugin(PapersPlugin): def command(self, conf, args): """Runs the git program in a shell""" - for a in args.arguments: - print(a) - GitPlugin.shell(' '.join([shell_quote(a) for a in args.arguments])) + self.shell(' '.join([shell_quote(a) for a in args.arguments])) def shell(self, cmd): subprocess.call('git -C {} {}'.format(self.pubsdir, cmd), shell=True)