0
0
Fork 0
mirror of https://github.com/boltgolt/howdy.git synced 2024-09-19 09:51:19 +02:00

Changed final print statement to reflect changes

Arguments for the `disable` command are either `{0, false}`, or `{1, true}`. However, only if the argument is `1` will the print statement print "Howdy has been disabled". It should, by right, also show if the argument was `true`. To fix it, I noticed that the 2 possible sets of arguments fall into either of 2 groups characterised by the variable `out_value`. I thus suggest that the variable be used in the conditional for the final print statement.
This commit is contained in:
arifer612 2020-11-11 21:33:13 +08:00 committed by GitHub
parent 3c9537a35f
commit fcd3bedb00
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,7 +39,7 @@ for line in fileinput.input([config_path], inplace=1):
print(line.replace("disabled = " + config.get("core", "disabled"), "disabled = " + out_value), end="") print(line.replace("disabled = " + config.get("core", "disabled"), "disabled = " + out_value), end="")
# Print what we just did # Print what we just did
if builtins.howdy_args.argument == "1": if out_value == "true":
print("Howdy has been disabled") print("Howdy has been disabled")
else: else:
print("Howdy has been enabled") print("Howdy has been enabled")