Commit 3de62a70 authored by carlosperate's avatar carlosperate

Moving files to Python package rename.

This commit only contains path changes, no file edits have been perform so that git can easily identify the move and keep the full history of all files.
If this commit is applied without the next it will break the build. This commit won't be pushed to master branch until back to working again, so master will always be working at HEAD.
parent a04b38e2
from __future__ import unicode_literals, absolute_import
import os
try:
# 2.x name
import BaseHTTPServer
except ImportError:
# 3.x name
import http.server as BaseHTTPServer
import ArduinoServerCompiler.BlocklyRequestHandler
ADDRESS = 'localhost'
ADDRESS = '0.0.0.0'
PORT = 8000
......
......@@ -259,7 +259,7 @@ def load_arduino_cli(sketch_path=None):
if (process.returncode != 0) and (process.returncode != 256):
success = False
if exit_code == str(1):
conclusion = 'Build failed or upload failed'
conclusion = 'Build or Upload failed'
if exit_code == str(2):
conclusion = 'Sketch not found'
if exit_code == str(3):
......
[Arduino_IDE]
arduino_exec_path = C:\IDEs\arduino-1.5.6-r2\arduino.exe
arduino_board = Uno
arduino_com_port = COM1
[Arduino_Sketch]
sketch_name = BlocklyDuinoSketch
sketch_directory = C:\Users\nggmcao\Desktop\volunteering\BlocklyDuino-BtW\BlocklyServerCompiler\tests
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment