Skip to content

Commit

Permalink
Fixing last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
NoxArt committed May 17, 2012
1 parent 44249dd commit c3e6b1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions FTPSync.py
Expand Up @@ -39,7 +39,7 @@

isDebug = settings.get('debug') # print debug messages to console?
isDebugVerbose = settings.get('debug_verbose') # print overly informative messages?
projectDefaults = settings.get('projectDefaults') # default config for a project
projectDefaults = settings.get('project_defaults') # default config for a project
ignore = settings.get('ignore') # global ignore pattern

# loaded project's config will be merged with this global one
Expand Down Expand Up @@ -125,7 +125,7 @@ def invalidateConfigCache(config_dir_name):

# Finds a config file in given folders
def findConfigFile(folders):
return findFile(configName)
return findFile(folders, configName)


# Returns configuration file for a given file
Expand Down

0 comments on commit c3e6b1f

Please sign in to comment.