summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-05-10 07:02:15 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-05-10 07:02:15 +0000
commit396413dab01fc13b67ce7c80f262ab482bd65ec8 (patch)
treed844377f99b8e3c8817771c76ee809811acd60e1
parent39f8efd53c9b0e11d4b932426d9f4d2635538dce (diff)
parenta407992cf4906d2228f8fbd4beb5605f6bdab0a8 (diff)
downloadktlint-aml_neu_331113000.tar.gz
Snap for 8564071 from a407992cf4906d2228f8fbd4beb5605f6bdab0a8 to mainline-neuralnetworks-releaseaml_neu_331310000aml_neu_331113000
Change-Id: I454b9a9125892be8e9431d5ef93bc881aebce7c7
-rwxr-xr-xktlint.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ktlint.py b/ktlint.py
index 72adbab..16bc0f8 100755
--- a/ktlint.py
+++ b/ktlint.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python3
#
# Copyright 2017, The Android Open Source Project
@@ -60,7 +60,7 @@ def main(args=None):
stdout, _ = check.communicate()
if stdout:
print('prebuilts/ktlint found errors in files you changed:')
- print(stdout)
+ print(stdout.decode('utf-8'))
print(FORMAT_MESSAGE.format(MAIN_DIRECTORY, ' '.join(kt_files)))
sys.exit(1)
else: