We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ace0640 commit 78e118cCopy full SHA for 78e118c
src/Core/protected/Internal/PythonWriter.h
@@ -113,11 +113,11 @@ template <class Scriptable> std::string scriptablesToPythonList (const std::vect
113
typename std::vector<Scriptable>::const_iterator it = objects.begin ( );
114
if (objects.end ( ) != it)
115
{
116
- list << "\"" << (*it).getScriptCommand ( ) << "\"";
+ list << (*it).getScriptCommand ( );
117
it++;
118
}
119
for ( ; objects.end ( ) != it; it++)
120
- list << ",\"" << (*it).getScriptCommand ( ) << "\"";
+ list << "," << (*it).getScriptCommand ( );
121
list << ']';
122
123
return list.utf8 ( );
0 commit comments