You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
print("What is your current timezone? Enter it in Unix slash-separated format. Example: Americas/Puerto_Rico")
timezone = str(raw_input("> "))
config["timezone"] = timezone
print ("Set timezone to %s.") % timezone
print("What is your current latitude/longitude? Enter it in comma separated format. You can get this by connecting to WiFi and using Google's Geolocation service on your mobile device.")
latlong = str(raw_input("> "))
config["latlong"] = latlong
print ("Set lat_long to %s.") % latlong
print ("Completed setup of server software. Is the following information correct? Y/N")