Files
@ bfd7fc9a814e
Branch filter:
Location: kallithea/scripts/whitespacecleanup.sh
bfd7fc9a814e
1.4 KiB
text/x-sh
py3: replace list comprehension with for-loop due to scope
The scope of the list comprehension variable 'x' will be limited to the list
comprehension in python3. Thus switching to a full loop (without this
scope restriction) in preparation for python3.
The scope of the list comprehension variable 'x' will be limited to the list
comprehension in python3. Thus switching to a full loop (without this
scope restriction) in preparation for python3.