diff options
-rw-r--r-- | testcases/functest_utils.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/testcases/functest_utils.py b/testcases/functest_utils.py index 31e41c966..59e89a5af 100644 --- a/testcases/functest_utils.py +++ b/testcases/functest_utils.py @@ -419,8 +419,7 @@ def get_git_branch(repo_path): """ repo = Repo(repo_path) branch = repo.active_branch - print branch.name - return branch + return branch.name def get_installer_type(logger=None): |