Skip to content

Commit b46b9cd

Browse files
author
Jose Carlos
committed
v1.0.0
1 parent 2322060 commit b46b9cd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ And thats all, Pynot is working properly, but... you don't have any defined even
8989
We are going to configure 2 events, like `'registration'` event, and a `'new_offer`' event.
9090
To do that, we need to declare the serializers, in this case, we have the next serializers:
9191

92-
muapp.serializers.UserSerializer
93-
muapp.serializers.OfferSerializer
92+
myapp.serializers.UserSerializer
93+
myapp.serializers.OfferSerializer
9494

9595
Therefore we can define the events in our `'settings.py'`, taking into account that the
9696
`'registration'` event will receive the registered user as parameter, and a `'new_offer`' event

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Import the README and use it as the long-description.
77
# Note: this will only work if 'README.rst' is present in your MANIFEST.in file!
88
here = os.path.abspath(os.path.dirname(__file__))
9-
with io.open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
9+
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
1010
long_description = '\n' + f.read()
1111

1212
setup(

0 commit comments

Comments
 (0)