Skip to content

Commit

Permalink
geändert: platformio_upload.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mindsuru committed Nov 24, 2023
1 parent 63af72b commit ef920a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions platformio_upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def on_upload(source, target, env):
username = None
password = None
print("No authentication values specified.")
print('Please, add some Options in your .ini file like: "custom_username=username custom_password=password"')
print('Please, add some Options in your .ini file like: \n\ncustom_username=username\ncustom_password=password\n')
if username is None or password is None:
print("Authentication required, but no credentials provided.")
return
Expand Down Expand Up @@ -128,4 +128,4 @@ def on_upload(source, target, env):
tqdm.write(message)


env.Replace(UPLOADCMD=on_upload)
env.Replace(UPLOADCMD=on_upload)

0 comments on commit ef920a1

Please sign in to comment.