Blame SOURCES/0012-make-sure-list-is-returned.patch

1070a0
From cd2fc155f84655ca689e33cc176fc2d9ab08c936 Mon Sep 17 00:00:00 2001
1070a0
From: Tomas Kasparek <tkasparek@redhat.com>
1070a0
Date: Mon, 5 Mar 2018 11:37:38 +0100
1070a0
Subject: [PATCH 12/17] make sure list is returned
1070a0
1070a0
---
1070a0
 koan/utils.py | 2 +-
1070a0
 1 file changed, 1 insertion(+), 1 deletion(-)
1070a0
1070a0
diff --git a/koan/utils.py b/koan/utils.py
1070a0
index 28c8af1..e202bd5 100644
1070a0
--- a/koan/utils.py
1070a0
+++ b/koan/utils.py
1070a0
@@ -364,7 +364,7 @@ def uniqify(lst, purge=None):
1070a0
          if x != purge:
1070a0
             temp2[x] = 1
1070a0
       temp = temp2
1070a0
-   return temp.keys()
1070a0
+   return list(temp.keys())
1070a0
 
1070a0
 def get_network_info():
1070a0
    try:
1070a0
-- 
1070a0
2.5.5
1070a0