From 255bbdbc0809aa216f6ad01857df3b5f2bc72044 Mon Sep 17 00:00:00 2001 From: jayofelony Date: Mon, 4 Mar 2024 20:40:04 +0100 Subject: [PATCH] Update wizard script --- bin/pwnagotchi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/pwnagotchi b/bin/pwnagotchi index 3a022504..a7369b20 100755 --- a/bin/pwnagotchi +++ b/bin/pwnagotchi @@ -234,7 +234,7 @@ if __name__ == '__main__': "Be sure to check for the correct display type @ \n" "https://github.com/jayofelony/pwnagotchi/blob/master/pwnagotchi/utils.py#L240-L431\n") if pwn_display_type != "": - f.write("ui.display.type = \""+pwn_display_type+"\"\n") + f.write("ui.display.type = \"%s\"\n" % pwn_display_type) pwn_display_invert = input("Do you want to invert the display colors? [Y/N]\n\n" "N = Black background\n" "Y = White background\n")