Skip to content

Commit 33d5b74

Browse files
authored
Merge pull request #155 from tomahim/fix/wrong-documentation-link-in-exception
Fixing documentation link in exception
2 parents 17af4b1 + 83626d5 commit 33d5b74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphene_sqlalchemy/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def get_query(model, context):
1616
if not session:
1717
raise Exception(
1818
"A query in the model Base or a session in the schema is required for querying.\n"
19-
"Read more http://graphene-python.org/docs/sqlalchemy/tips/#querying"
19+
"Read more http://docs.graphene-python.org/projects/sqlalchemy/en/latest/tips/#querying"
2020
)
2121
query = session.query(model)
2222
return query

0 commit comments

Comments
 (0)