GemTalk / Rowan

a new project/package manager for Smalltalk that supports FileTree and Tonel repositories, and is independent of Monticello and Metacello
MIT License
13 stars 7 forks source link

RwAbstractReaderWriterVisitor>>#packageConvention -- string concatenation error #907

Open kurtkilpela opened 9 months ago

kurtkilpela commented 9 months ago

RwAbstractReaderWriterVisitor>>#packageConvention contains an error when it attempts to generate the string for the error. While attempting to concatenate 'for project', it incorrectly ends the statement rather than sends the #, message. This results in the omission of the project portion of the error.

ppc printString. ' for project '

should have been

ppc printString, ' for project '

Note, this was discovered in masterV3.0. Other branches have not been checked.