Why do the line "old_langpacks.append(act_item)" get skipped? When I use just the for loop, without the if, then it works.
if act_file == "Languages.csv":
temp_list = open(act_file,"r")
for act_item in temp_list:
old_langpacks.append(act_item)
else:
pass