git-update: Use proper stop value for slice

Fixes a regression introduced in 4112e57 (Add a restore command to the
SSH interface, 2015-08-14).

Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
This commit is contained in:
Lukas Fleischer 2015-09-16 22:07:59 +02:00
parent 34e7f7084a
commit 2c20403cc4

View file

@ -188,7 +188,7 @@ if len(sys.argv) == 2 and sys.argv[1] == "restore":
refname = "refs/heads/master"
sha1_old = sha1_new = repo.lookup_reference('refs/heads/' + pkgbase).target
elif len(sys.argv) == 4:
refname, sha1_old, sha1_new = sys.argv[1:3]
refname, sha1_old, sha1_new = sys.argv[1:4]
else:
die("invalid arguments")