Skip to content

Commit

Permalink
Review zerotk.text module.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaniabi committed Mar 21, 2016
1 parent 627995d commit b0dd718
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_text.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def test_indent():

assert indent('alpha') == ' alpha'

assert indent('alpha', indent=2) == ' alpha'
assert indent('alpha', indent_=2) == ' alpha'
assert indent('alpha', indentation='...') == '...alpha'

# If the original text ended with '\n' the resulting text must also end with '\n'
Expand Down
2 changes: 1 addition & 1 deletion zerotk/clikit/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import six
from six.moves.configparser import SafeConfigParser
from zerotk.clikit.text import dedent
from zerotk.text import dedent

from .command import Command

Expand Down

0 comments on commit b0dd718

Please sign in to comment.