Update setup.py

pull/365/head
BlockArchitech 3 years ago committed by GitHub
parent 41ebf3b5e5
commit 965f633476
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -91,6 +91,10 @@ loader = Loader("Saving Credentials...", "Done!").start()
# you can also put a while loop here, e.g. while VideoIsBeingMade == True: ... # you can also put a while loop here, e.g. while VideoIsBeingMade == True: ...
time.sleep(0.5) time.sleep(0.5)
console.log("Removing old .env file...") console.log("Removing old .env file...")
if not os.path.exists(".env"):
configured = False
console.log(".env doesn't exist, skipping.")
else:
os.remove(".env") os.remove(".env")
time.sleep(0.5) time.sleep(0.5)
console.log("Creating new .env file...") console.log("Creating new .env file...")

Loading…
Cancel
Save