Skip to content

Commit

Permalink
Merge pull request commaai#380 from ShaneSmiskol/release2
Browse files Browse the repository at this point in the history
change to arne's ftp server for gps data collection
  • Loading branch information
sshane authored Jun 9, 2019
2 parents dd699bd + 164447c commit 000b04c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions selfdrive/data_collection/gps_uploader.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ def upload_data():

filename = "gps-data.{}".format(random.randint(1,99999))

ftp = ftplib.FTP("smiskol.com")
ftp.login("test", "test")
ftp = ftplib.FTP("arneschwarck.dyndns.org")
ftp.login("openpilot", "communitypilot")
with open(filepath, "rb") as f:
try:
ftp.mkd("/{}".format(username))
Expand Down

0 comments on commit 000b04c

Please sign in to comment.