aboutsummaryrefslogtreecommitdiff
path: root/update.py
diff options
context:
space:
mode:
Diffstat (limited to 'update.py')
-rwxr-xr-xupdate.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/update.py b/update.py
index 68e598a..c203240 100755
--- a/update.py
+++ b/update.py
@@ -65,14 +65,14 @@ def check_updates():
print("\nFinished checking for updates!")
def read_file(fil):
- strings = set()
+ strings = []
with open(fil) as f:
for line in f:
string = line.strip().split()
if len(line) >= 1 and line[0] != '#':
# run strip on each element
string = tuple(map(lambda x: x.strip(), string))
- strings.add(string)
+ strings.append(string)
return strings