1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-18 05:26:29 +02:00

Print an error message of some sort if git fast-import fails.

Signed-off-by: Simon Hausmann <simon@lst.de>
This commit is contained in:
Simon Hausmann 2007-04-13 22:21:10 +02:00
parent 80b5910fac
commit fd4ca86a0b

View File

@ -958,6 +958,7 @@ class P4Sync(Command):
try:
self.commit(details, self.extractFilesFromCommit(details), self.branch, self.globalPrefix)
except IOError:
print "IO error with git fast-import. Is your git version recent enough?"
print self.gitError.read()
else: