View Single Post
  #1   Spotlight this post!  
Unread 20-02-2011, 18:18
tux tux is offline
Registered User
AKA: Lee Harr
FRC #3842 (Shock-a-Bots)
Team Role: Mentor
 
Join Date: Apr 2005
Rookie Year: 2005
Location: Rochester, NY
Posts: 91
tux is an unknown quantity at this point
Re: RobotPy WPILib v2262 released [unofficial]

Hi virtuald. I found a bug in your install.py script:

About line 184

Code:
    if len(args) == 1:
        robot_host = args[1]
should be:

Code:
    if len(args) == 1:
        robot_host = args[0]
In other words, if len(args)==1 there will be no args[1]
Reply With Quote