diff --git a/README.txt b/README.txt
index ebd8e1d2122eb2b3116c2ba76f074a4017cb46d3..646943c03bb909282d9f939ee64a7a742c150668 100644
--- a/README.txt
+++ b/README.txt
@@ -6,7 +6,7 @@ pip install requests
 
 _________________________
 
-1.  Make sure you are in the "Python-Flip Port on-off" folder
+1.  Make sure you are in the correct folder where the file is located.
 2.  Update the text file for your Campus with the switches that you would like to work with.
-3.  type in "python3 flipport.py"
-4.  Enter your information and let the script run.
+3.  type in "python3 flipport.py"  to run the flipport.py script.
+4.  Enter your information and let the script run.
\ No newline at end of file
diff --git a/flipport.py b/flipport.py
index 2e6a4c7cef69bb76939d8b4070bdfea60db2f301..7af713be02a9ebe2f08bb5789bb7c48bd320f232 100644
--- a/flipport.py
+++ b/flipport.py
@@ -75,8 +75,13 @@ for selectIP in file:
         if re.search("[\d]+/[\d]/[\d]+",to):
             print (to)
             to2 = to.split("/")
-            output2 = [f"interface {to2[0]}/{to2[1]}/{to2[2]}","shut","no shut"]
+            output1 = [f"interface {to2[0]}/{to2[1]}/{to2[2]}","shut"]
+            net_connect.send_config_set(output1)
+            time.sleep(1)
+            output2 = [f"interface {to2[0]}/{to2[1]}/{to2[2]}","no shut"]
             net_connect.send_config_set(output2)
+
+
     net_connect.send_config_set(f"wr mem")
     net_connect.disconnect()
     print(f"Logged out from Switch!")
\ No newline at end of file