Skip to content

Commit

Permalink
Fix M23 response to be more like other firmwares
Browse files Browse the repository at this point in the history
This should address OctoPrint/OctoPrint#1285
  • Loading branch information
markwal committed Mar 21, 2016
1 parent e525779 commit f70e82d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pymodule/gpxmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ static int translate_handler(Gpx *gpx, Tio *tio, char *buffer, size_t length)
// but other than enumerating all the files again, we don't
// have a way to tell the printer to go check if it can be
// opened
tio_printf(tio, " File opened:%s Size:%d\nFile selected:%s", gpx->selectedFilename, 0, gpx->selectedFilename);
tio_printf(tio, "\nFile opened:%s Size:%d\nFile selected:%s", gpx->selectedFilename, 0, gpx->selectedFilename);
// currently no way to ask Sailfish for the file size, that I can tell :-(
break;
}
Expand Down

0 comments on commit f70e82d

Please sign in to comment.