Commit b592d765 by Brian Coca

unchained list coercion as it removed the randomization

parent 12016b95
...@@ -237,7 +237,8 @@ def rand(environment, end, start=None, step=None): ...@@ -237,7 +237,8 @@ def rand(environment, end, start=None, step=None):
def randomize_list(mylist): def randomize_list(mylist):
try: try:
shuffle(list(mylist)) mylist = list(mylist)
shuffle(mylist)
except: except:
pass pass
return mylist return mylist
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment