sync: Remove unused variable

Change-Id: I44ab990c89ab4da82c424bae95e463cabb12fd50
Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/357136
Tested-by: Josip Sokcevic <sokcevic@google.com>
Reviewed-by: Mike Frysinger <vapier@google.com>
This commit is contained in:
Josip Sokcevic 2023-02-01 20:30:46 -08:00
parent 69427da8c9
commit 48067714ec

View File

@ -498,7 +498,7 @@ later is required to fix a server side protocol bug.
print('error: Cannot fetch %s from %s'
% (project.name, project.remote.url),
file=sys.stderr)
except KeyboardInterrupt as e:
except KeyboardInterrupt:
print(f'Keyboard interrupt while processing {project.name}')
except GitError as e:
print('error.GitError: Cannot fetch %s' % str(e), file=sys.stderr)