Fix filename in send-exec.py

This commit is contained in:
archshift 2015-01-04 00:30:20 -08:00
parent a21087356d
commit 58065855c2

View File

@ -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))