Open
Description
It seems that the single quote contained in double quotes is preventing the code afterward from being converted.
<cfset foo = get(where="mycolumn IN (#ListQualify(myList, "'")#)")>
<cfif true>
<cfset bar = false>
</cfif>
converts to:
foo = get(where="mycolumn IN (#ListQualify(myList, "'")#)")>
<cfif true>
<cfset bar = false>
</cfif;