Add missing comma (#5978)

This commit is contained in:
Ari Rouvinen 2018-05-08 10:15:59 +02:00 committed by Tom Christie
parent 40d5985f57
commit 45acfe05b4

View File

@ -253,7 +253,7 @@ The `TokenAuthentication` class can be used to support REST framework's built-in
`TokenAuthentication`, as well as OAuth and JWT schemes.
auth = coreapi.auth.TokenAuthentication(
scheme='JWT'
scheme='JWT',
token='<token>'
)
client = coreapi.Client(auth=auth)