Commit a0315998 authored by Chris McDonough's avatar Chris McDonough

Removed misleading comment from indention function.

parent 26fc2d04
...@@ -7,8 +7,7 @@ from string import split, join, replace, expandtabs, strip, find ...@@ -7,8 +7,7 @@ from string import split, join, replace, expandtabs, strip, find
def indention(str,front = re.compile("^\s+").match): def indention(str,front = re.compile("^\s+").match):
""" """
Convert all tabs to the appropriate number of spaces. Find the number of leading spaces. If none, return 0.
Find the number of leading spaces. If none, return 0
""" """
result = front(str) result = front(str)
......
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