From 8a11f6f24cecac28e7cdb3f5d0d7c83aec0df017 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 27 Aug 2019 00:26:15 -0400 Subject: rename local trace module There is a standard Python "trace" module, so having a local trace.py prevents us being able to import that. Rename the module to avoid. Change-Id: I23e29ec95a2204bb168a641323d05e76968d9b57 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/234832 Reviewed-by: David Pursehouse Tested-by: Mike Frysinger --- git_command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git_command.py') diff --git a/git_command.py b/git_command.py index f5352ea0..67423035 100644 --- a/git_command.py +++ b/git_command.py @@ -23,7 +23,7 @@ from signal import SIGTERM from error import GitError import platform_utils -from trace import REPO_TRACE, IsTrace, Trace +from repo_trace import REPO_TRACE, IsTrace, Trace from wrapper import Wrapper GIT = 'git' -- cgit v1.2.3-54-g00ecf