1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-22 05:06:09 +02:00

Minor cosmetic fixlet for the git-p4 submit sync question.

Signed-off-by: Simon Hausmann <simon@lst.de>
This commit is contained in:
Simon Hausmann 2007-03-24 09:18:20 +01:00
parent cb2c9db507
commit 274917a3d6

View File

@ -342,7 +342,7 @@ class P4Sync(Command):
print "Perforce checkout for depot path %s located at %s" % (depotPath, clientPath)
os.chdir(clientPath)
response = raw_input("Do you want to sync %s with p4 sync? (y/n)" % clientPath)
response = raw_input("Do you want to sync %s with p4 sync? (y/n) " % clientPath)
if response == "y" or response == "yes":
system("p4 sync ...")