From 34d97848b54df6ba639be269a744aa04dfcd1931 Mon Sep 17 00:00:00 2001 From: chabad360 Date: Wed, 4 Mar 2020 02:22:29 +0000 Subject: [PATCH] remove some debugging lines --- travis.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/travis.py b/travis.py index ba4270df..0be54695 100755 --- a/travis.py +++ b/travis.py @@ -21,12 +21,6 @@ parser.add_argument('-o', '--tag-only', required=False, action='store_true', des args = parser.parse_args() -print('image_type = {!r}'.format(args.image_type)) -print('service = {!r}'.format(args.service)) -print('version = {!r}'.format(args.version)) -print('tag = {!r}'.format(args.tag)) -print('tag_only = {!r}'.format(args.tag_only)) - def git_version(service, version): print(f'Pulling {service} v{version}') subprocess.run(f'git clone https://github.com/frappe/{service} --branch version-{version}', shell=True)