Skip to content

Commit

Permalink
Stop using f-strings since this has to run on older Python.
Browse files Browse the repository at this point in the history
  • Loading branch information
pauleveritt committed Apr 27, 2019
1 parent 8baf9df commit 6a42ae3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Imagine an application where customers walk in the door and you want a `Greeter`
self.greeting = greeting
def __call__(self):
return f'{self.greeting} !!'
return self.greeting + ' !!'
We are writing a pluggable application which has a "registry" which processes operations in a "container":

Expand Down

0 comments on commit 6a42ae3

Please sign in to comment.