From 58065855c2ecdeff9c1bc727ce6d28c48207c0f4 Mon Sep 17 00:00:00 2001 From: archshift Date: Sun, 4 Jan 2015 00:30:20 -0800 Subject: [PATCH] Fix filename in send-exec.py --- send-exec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/send-exec.py b/send-exec.py index c32080c..ce8cf0f 100644 --- a/send-exec.py +++ b/send-exec.py @@ -11,7 +11,7 @@ import time TCP_IP = '192.168.xx.xx' TCP_PORT = 9000 -MESSAGE = open("citra-3dsutils.3dsx", "rb").read(); +MESSAGE = open("3dsutils.3dsx", "rb").read(); s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((TCP_IP, TCP_PORT))