Skip to content

Commit

Permalink
ContikiMoteType: add a missing single quote in a log message
Browse files Browse the repository at this point in the history
This resolves the error of "unmatched single quote" by xargs seen in a
failed log of Travis CI.
  • Loading branch information
yatch committed Dec 5, 2016
1 parent 9ccc169 commit f5d6b7e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ private void doInit() throws MoteTypeCreationException {
}

// Allocate core communicator class
logger.info("Creating core communicator between Java class " + javaClassName + " and Contiki library '" + getContikiFirmwareFile().getPath() + "");
logger.info("Creating core communicator between Java class " + javaClassName + " and Contiki library '" + getContikiFirmwareFile().getPath() + "'");
myCoreComm = CoreComm.createCoreComm(this.javaClassName, getContikiFirmwareFile());

/* Parse addresses using map file
Expand Down

0 comments on commit f5d6b7e

Please sign in to comment.