Sublime Forum

ERROR unexpected trailing characters

#1

my sublime text 3 has an error
when i open it, it shows error
ERROR unexpected trailing characters in Packages\users\sublimecodenintel.sublime-settings:1:9

my code is

"Python": {
        "python":"D:/Python27/python.exe",
        "pythonExtraPaths":
            [
                "D:/Python27",
                 "D:/Python27/DLLs",
                 "D:/Python27/Lib",
                 "D:/Python27/Lib/lib-tk",
                 "D:/Python27/Lib/ite-packages"
            ]
        }
0 Likes

#2

I imagine it needs to be wrapped inside braces to make it a valid JSON dictionary at the top level - put a { before "Python": and a } after }

0 Likes

#3

thank you very much

0 Likes