mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 04:50:58 +07:00
Namely, if substitution values were passed as non-literal value compatible with collections.Mapping, use plain string concatenation. The existing condition for that was wrong. GitOrigin-RevId: b6e9b9c615d80aa7842f883086b3544e095d5f81
3 lines
58 B
Python
3 lines
58 B
Python
d = {'name': 'bar'}
|
|
a = 'foo'<caret>
|
|
(a + ' %(name)s') % d |