eudicots / Cactus

Static site generator for designers. Uses Python and Django templates.
BSD 3-Clause "New" or "Revised" License
3.47k stars 313 forks source link

default shipped blog.py plugin is using tabs #174

Closed samos123 closed 8 years ago

samos123 commented 9 years ago

Noticed that this file is using tabs instead of 4 spaces: https://github.com/koenbok/Cactus/blob/master/cactus/skeleton/plugins/blog.disabled.py

Is this on purpose? At least it's done consistently in that file but other files seem to use spaces, suggest using 4 spaces.

krallin commented 8 years ago

I'm usually against changing indentation for indentation's sake (it makes for noisy commits). However, I'm working on Python 3 support, and Python 3 is less tolerant of mixed use of indentation, so we'll bite the bullet then and update everything to spaces.

In other words; it's coming.

Thanks!