From 75ac3fa645fd56c412cb83321988c83fa0a04fbc Mon Sep 17 00:00:00 2001 From: Robb Shecter Date: Sat, 20 Jan 2018 19:54:33 -0800 Subject: [PATCH] Removed the using-upstream-branch warning --- gitless/cli/helpers.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/gitless/cli/helpers.py b/gitless/cli/helpers.py index 3f4faa1..24c454c 100644 --- a/gitless/cli/helpers.py +++ b/gitless/cli/helpers.py @@ -61,8 +61,6 @@ def get_branch_or_use_upstream(branch_name, arg, repo): 'branch set'.format(arg)) ret = current_b.upstream - pprint.warn( - 'No {0} branch specified, using upstream branch {1}'.format(arg, ret)) else: ret = get_branch(branch_name, repo) return ret