Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
HOWTO: Fix Python Indentation

I have Python library where only 2 spaces indentation was used. I need automated way to convert all files to 4 spaces indentation. Is there any tool/script/editor for that?

Plz don't suggest Emacs.

share|improve this question
3  
What OS are you on? You could do it with Python, but this sort of thing is usually done with a script in your relevant cli. – sr2222 Jul 27 '12 at 21:11
Please check this thread stackoverflow.com/questions/1024435/…. – Maxim Skurydin Jul 27 '12 at 21:15
OS is Linux Mint. – Pavel Paulau Jul 27 '12 at 21:18

marked as duplicate by sdcvvc, BlaXpirit, Ollie Jones, Chris, Donal Fellows Jul 28 '12 at 17:30

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 6 down vote accepted

Try the reindent script by Tim Peters, it was designed specifically for converting Python files to 4-space indentation.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.