Added .g to the allowed extensions for file uploads

This commit is contained in:
Gina Häußge 2013-09-22 15:31:55 +02:00
parent a7477e0184
commit 4ea2345eda

View file

@ -17,7 +17,7 @@ from octoprint.events import eventManager
from werkzeug.utils import secure_filename
SUPPORTED_EXTENSIONS=["gcode", "gco", "stl"]
SUPPORTED_EXTENSIONS=["gcode", "gco", "stl", "g"]
class GcodeManager:
def __init__(self):