Fixed missing parenthese

This commit is contained in:
zortazert 2022-04-11 19:48:42 -05:00
parent b06b936ef6
commit 980a1aabaa

View file

@ -32,7 +32,7 @@ import time
import os import os
while True: while True:
time.sleep(300) # Every 5 minutes time.sleep(300) # Every 5 minutes
os.system("git pull" # Pull the changes from git os.system("git pull") # Pull the changes from git
``` ```