Skip to content

Conversation

@kmario23
Copy link
Contributor

@kmario23 kmario23 commented Jul 7, 2016

Replaced the old style of string formatting using percents with new "format", which is kinda neat.

@sdispater
Copy link
Collaborator

The tests are broken.

It seems that you have unnecessary parenthesis, for instance:

return '{}_{}'.format((m.group(1).lower(), m.group(2).lower()))

should be

return '{}_{}'.format(m.group(1).lower(), m.group(2).lower())

@kmario23
Copy link
Contributor Author

kmario23 commented Jul 7, 2016

@sdispater Sorry about that! I fixed it and the build is successful now.

@sdispater
Copy link
Collaborator

No worries 😃
Thanks for the pull request

@sdispater sdispater merged commit e8c1d3b into python-pendulum:master Jul 7, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants