Skip to content
This repository was archived by the owner on Aug 7, 2023. It is now read-only.

Commit 02b1b15

Browse files
committed
Fix the config key for old setting migration
It looks like the config key that was set for old settings migrations was unfortunately set to `linter-pylint.executablePath` instead of the equivalent `linter-clang` key.
1 parent e10f23a commit 02b1b15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export default {
8888
atom.config.unset('linter-clang.execPath');
8989
if (oldPath !== 'clang') {
9090
// If the old config wasn't set to the default migrate it over
91-
atom.config.set('linter-pylint.executablePath', oldPath);
91+
atom.config.set('linter-clang.executablePath', oldPath);
9292
}
9393
}
9494

0 commit comments

Comments
 (0)