Skip to content

Commit

Permalink
Fix improper use of "false"
Browse files Browse the repository at this point in the history
  • Loading branch information
m-hall committed Nov 25, 2015
1 parent 61808e2 commit ad14569
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion svn_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def nothing(self, nothing1=None, nothing2=None, nothing3=None, **args):
def get_svn_path(self):
"""Gets the command to run for native SVN"""
svn_path = settings.get_native('svnPath', False)
if svn_path == false:
if svn_path == False:
return 'svn '
else:
return svn_path + ' '
Expand Down

0 comments on commit ad14569

Please sign in to comment.