You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ini ini = new Ini();
ini.read(file);
ini.sections().get("distutils").put("index-servers", "test\npypi\npypitest")
ini.getSections().put("test", new HashMap<String, String>());
ini.write(file2);
the new value of index-servers "test\npypi\npypitest" is replaced by interpolation with "\npypi\npypitest". The first row is removed.
The text was updated successfully, but these errors were encountered:
nfalco79
changed the title
When allow interpolation multiline values are trimmed
When allow interpolation multiline first line of values are cutted
Mar 7, 2020
I have a PyPI config file like this:
Now I would add a new server to the index:
the files will contains:
the new value of index-servers "test\npypi\npypitest" is replaced by interpolation with "\npypi\npypitest". The first row is removed.
The text was updated successfully, but these errors were encountered: