[Blends-commit] [SCM] blends-gsoc branch, master, updated. b4d32318b795e21b7ce40020e0db28276943ae46

Emmanouil Kiagias e.kiagias at gmail.com
Thu Jan 16 12:20:56 UTC 2014


The following commit has been merged in the master branch:
commit e2f905306a45e1053b491b71a4a1ff8adec01d34
Author: Emmanouil Kiagias <e.kiagias at gmail.com>
Date:   Thu Jan 16 14:17:31 2014 +0200

    fixed a bug in tasks_diff, reported here: https://lists.debian.org/debian-blends/2014/01/msg00003.html

diff --git a/tasks_diff b/tasks_diff
index 6980b1a..f76ccbc 100755
--- a/tasks_diff
+++ b/tasks_diff
@@ -138,9 +138,8 @@ def compare_tasks(tasks, tasks_compare, taskprefix):
 				print "    {0}: ".format(header.capitalize()),
 				print ", ".join(removed)
 
-
-	removed_tasks = set(tasks.keys()) - set(tasks_compare.keys())
-	added_tasks =  set(tasks_compare.keys()) - set(tasks.keys())
+	removed_tasks =  set(tasks_compare.keys()) - set(tasks.keys())
+	added_tasks =  set(tasks.keys()) - set(tasks_compare.keys())
 	if added_tasks:
 		if first_print:
 			print START_FLAG, "\n"

-- 
Git repository for blends-gsoc code



More information about the Blends-commit mailing list