From ad14569d23eb1b4e46f18ddf04ad31f78d19e744 Mon Sep 17 00:00:00 2001 From: Michael Hall Date: Wed, 25 Nov 2015 08:24:51 -0500 Subject: [PATCH] Fix improper use of "false" --- svn_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/svn_commands.py b/svn_commands.py index 24418f2..26da87f 100644 --- a/svn_commands.py +++ b/svn_commands.py @@ -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 + ' '