Skip to content

Commit

Permalink
Simplify even further
Browse files Browse the repository at this point in the history
  • Loading branch information
singiamtel committed Oct 1, 2024
1 parent 37966dc commit 2d1ac99
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions alibuild_helpers/analytics.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ def askForAnalytics():
banner("In order to improve user experience, aliBuild would like to gather "
"analytics about your builds.\nYou can find all the details at:\n\n"
" https://github.com/alisw/alibuild/blob/master/ANALYTICS.md\n")
_input = input
a = _input("Is that ok for you [YES/no]? ")
a = input("Is that ok for you [YES/no]? ")
if a.strip() and a.strip().lower().startswith("n"):
debug("User requsted disabling analytics.")
return disable_analytics()
Expand Down

0 comments on commit 2d1ac99

Please sign in to comment.