From cd655cf1d371fe1f3e780bb1f14a9cd04013e22d Mon Sep 17 00:00:00 2001 From: Rain Clark Date: Fri, 1 May 2015 16:44:31 -0400 Subject: [PATCH] Switched out confirmation popup to use tk --- FalconPunch.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) mode change 100644 => 100755 FalconPunch.py diff --git a/FalconPunch.py b/FalconPunch.py old mode 100644 new mode 100755 index 64de13b..42275f8 --- a/FalconPunch.py +++ b/FalconPunch.py @@ -1,5 +1,6 @@ #!/usr/bin/env python import os, argparse, socket, sys, struct, easygui +import tkinter.messagebox # New & improved args parsing parser = argparse.ArgumentParser(description='Sends .CIA files to the 3DS via FBI') @@ -39,7 +40,7 @@ while True: if args.cia and args.ip: print(confirmation) else: - easygui.msgbox(confirmation, "FalconPunch") + tkinter.messagebox.showinfo("Falcon Punch", confirmation) break # EOF sock.sendall(chunk)