Skip to content

Commit

Permalink
Revert "Use Py2.6-compatible format"
Browse files Browse the repository at this point in the history
This reverts commit 42bd528.
  • Loading branch information
hugovk committed Sep 26, 2017
1 parent f345327 commit ea5f5c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_tracery.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@ def setUp(self):
def assert_starts_with(self, a, b, msg=None):
self.assertTrue(
a.startswith(b),
msg or "{0} does not start with {1}".format(a, b))
msg or "{} does not start with {}".format(a, b))

def assert_ends_with(self, a, b, msg=None):
self.assertTrue(
a.endswith(b),
msg or "{0} does not end with {1}".format(a, b))
msg or "{} does not end with {}".format(a, b))


class TestBasics(TestPytracery):
Expand Down

0 comments on commit ea5f5c9

Please sign in to comment.