From 65a95620b219eb108c5013a9e37c22218534b411 Mon Sep 17 00:00:00 2001 From: Stephan Witt Date: Tue, 15 Sep 2015 07:18:16 +0200 Subject: [PATCH] Correct commit 92b0886: true is not True in python. --- lib/configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/configure.py b/lib/configure.py index db947b81e3..0096a9151e 100644 --- a/lib/configure.py +++ b/lib/configure.py @@ -166,7 +166,7 @@ def checkUpgrade(): logger.debug('previous = ' + previous) if os.path.isdir( previous ): logger.info('Found directory "%s".', previous) - copy_tree( previous, cwd, true ) + copy_tree( previous, cwd, True ) logger.info('Content copied to directory "%s".', cwd) return -- 2.39.5