From 3cb0b75228f8073f7c2887b4e0a044c3d87c89da Mon Sep 17 00:00:00 2001 From: Nick Moy Date: Mon, 14 Oct 2019 13:41:19 -0400 Subject: [PATCH] changed out the password and ip address to the coffee machine --- python/fucking_coffee.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/fucking_coffee.py b/python/fucking_coffee.py index c19572f..e2b1ee9 100755 --- a/python/fucking_coffee.py +++ b/python/fucking_coffee.py @@ -10,8 +10,8 @@ output = subprocess.check_output('who') if 'my_username' not in output: sys.exit() -coffee_machine_ip = '10.10.42.42' -password = '1234' +coffee_machine_ip = 'REPLACE THIS WITH YOUR IP ADDRESS' +password = 'REPLACE THIS WITH YOUR PASSWORD' password_prompt = 'Password: ' con = telnetlib.Telnet(coffee_machine_ip)