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
I'm not sure I understand the commands in lines 175-177: it looks like this is correcting a bug in the Bookworm code, but I can't tell what it is. If there is one, we should correct it directly rather than force a workaround.
echo" In line 27 of federalist/federalist/scripts/makeConfiguration.py, change"echoecho" /.my.cnf --> os.path.expanduser(\"~/.my.cnf\")"
systemConfigFile.read(), the function called in line 27, reads through a list of config files and keeps the values from the last one that it read; since os.path.expanduser("~/.my.cnf") is already in the list after /.my.cnf, the change suggested shouldn't make any difference. Does it?
The text was updated successfully, but these errors were encountered:
echo " In line 27 of federalist/federalist/scripts/makeConfiguration.py, change"echoecho " /.my.cnf --> os.path.expanduser("~/.my.cnf")"
systemConfigFile.read(), the function called in line 27, reads through a
list of config files and keeps the values from the last one that it read;
since os.path.expanduser("~/.my.cnf") is already in the list after
/.my.cnf, the change suggested shouldn't make any difference. Does it?
—
Reply to this email directly or view it on GitHub #1.
I'm not sure I understand the commands in lines 175-177: it looks like this is correcting a bug in the Bookworm code, but I can't tell what it is. If there is one, we should correct it directly rather than force a workaround.
systemConfigFile.read()
, the function called in line 27, reads through a list of config files and keeps the values from the last one that it read; sinceos.path.expanduser("~/.my.cnf")
is already in the list after/.my.cnf
, the change suggested shouldn't make any difference. Does it?The text was updated successfully, but these errors were encountered: