From 9c2a156faa1f301fa74e0d8909a98a3e842faa6a Mon Sep 17 00:00:00 2001 From: Heewa Barfchin Date: Sun, 17 Jan 2016 20:42:16 -0500 Subject: Improve YCM contrib: Fix db path --- contrib/YouCompleteMe/ycm_extra_conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'contrib') diff --git a/contrib/YouCompleteMe/ycm_extra_conf.py b/contrib/YouCompleteMe/ycm_extra_conf.py index 12ad080143..7c54677c8f 100644 --- a/contrib/YouCompleteMe/ycm_extra_conf.py +++ b/contrib/YouCompleteMe/ycm_extra_conf.py @@ -9,7 +9,7 @@ def DirectoryOfThisScript(): def GetDatabase(): compilation_database_folder = os.path.join(DirectoryOfThisScript(), - '..', '..', 'build') + '..', 'build') if os.path.exists(compilation_database_folder): return ycm_core.CompilationDatabase(compilation_database_folder) return None -- cgit