Skip rel config for HOME .syncplay file (FS#119)

This commit is contained in:
Etoh 2014-04-20 16:59:49 +01:00
parent d76d823b82
commit 892a504430

View File

@ -271,10 +271,10 @@ class ConfigurationGetter(object):
for location in locations: for location in locations:
for name in constants.CONFIG_NAMES: for name in constants.CONFIG_NAMES:
path = location + os.path.sep + name path = location + os.path.sep + name
if(os.path.isfile(path)): if(os.path.isfile(path) and (os.name == 'nt' or path != os.path.join(os.getenv('HOME', '.'), constants.DEFAULT_CONFIG_NAME_LINUX))):
loadedPaths.append("'" + os.path.normpath(path) + "'") loadedPaths.append("'" + os.path.normpath(path) + "'")
self._parseConfigFile(path, createConfig=False) self._parseConfigFile(path, createConfig=False)
self._checkConfig() self._checkConfig()
return loadedPaths return loadedPaths
def getConfiguration(self): def getConfiguration(self):