-
Notifications
You must be signed in to change notification settings - Fork 319
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
config.misc.pluginlist.fc_bookmarks_order #3328
Conversation
bf1fc2c
to
b85615e
Compare
Is this a alternative to fix and close it? |
This is on my todo list, please wait. |
6690825
to
437749a
Compare
Thank you for feedback, now it looks better. |
Sorry. This migration is too complicated. Please use camel case and no underlines for the new name. |
Please rename the configs to: config.misc.pluginlist.eventinfoOrder = ConfigText(default="[]") and then revert all changes in Migration.py. |
437749a
to
7edc9e5
Compare
Done |
@@ -1010,7 +1010,7 @@ def makeSymlinkCallback(newName): | |||
|
|||
def keyManageBookmarks(self, current): | |||
bookmarks = config.plugins.FileCommander.bookmarks.value | |||
order = config.misc.pluginlist.fc_bookmarks_order.value.split(",") | |||
order = eval(config.misc.pluginlist.fcBookmarksOrder_order.value) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo
Bis auf den einen Typo sieht es gut aus. Jetzt musst du das natürlich noch testen. |
couldn't handle bookmarks with "," in path. Don't use .split(",") and ",".join() to use ConfigText as list. Use list as string for ConfigText.
7edc9e5
to
78c739a
Compare
OMG der Typo! Danke! |
couldn't handle bookmarks with "," in path.
Don't use .split(",") and ",".join() to use ConfigText as list.
Use list as string for ConfigText.