land-remote: Run remote land command unbuffered.
[mat/samba.git] / script / land-remote.py
index 75f1b41915deeeb2a690a5bbe43a79ef97cbd4e8..975427ba7d88254b484461bc0c07fafaaa1fd550 100755 (executable)
@@ -50,7 +50,7 @@ print "Pushing local branch"
 args = ["git", "push", "--force", "git+ssh://%s/%s" % (opts.host, remote_repo), "HEAD:land"]
 print "$ " + " ".join(args)
 subprocess.check_call(args)
-remote_args = ["cd", remote_repo, ";", "git", "checkout", "land", ";", "python", "./script/land.py", "--repository=%s" % remote_repo]
+remote_args = ["cd", remote_repo, ";", "git", "checkout", "land", ";", "./script/land.py", "--repository=%s" % remote_repo]
 if opts.email:
     remote_args.append("--email=%s" % opts.email)
 if opts.always_email: