Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
flask-admin
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Python-Dev
flask-admin
Commits
1d5ad50e
Commit
1d5ad50e
authored
Apr 09, 2020
by
Serge Koval
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed SQLAlchemy 1.3.6 compatibility issue
parent
fe0c818c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
tools.py
flask_admin/contrib/sqla/tools.py
+1
-1
No files found.
flask_admin/contrib/sqla/tools.py
View file @
1d5ad50e
...
@@ -203,7 +203,7 @@ def is_hybrid_property(model, attr_name):
...
@@ -203,7 +203,7 @@ def is_hybrid_property(model, attr_name):
last_model
=
attr
.
property
.
argument
last_model
=
attr
.
property
.
argument
if
isinstance
(
last_model
,
_class_resolver
):
if
isinstance
(
last_model
,
_class_resolver
):
last_model
=
model
.
_decl_class_registry
[
last_model
.
arg
]
last_model
=
model
.
_decl_class_registry
[
last_model
.
arg
]
elif
isinstance
(
last_model
,
types
.
FunctionType
):
elif
isinstance
(
last_model
,
(
types
.
FunctionType
,
types
.
MethodType
)
):
last_model
=
last_model
()
last_model
=
last_model
()
last_name
=
names
[
-
1
]
last_name
=
names
[
-
1
]
return
last_name
in
get_hybrid_properties
(
last_model
)
return
last_name
in
get_hybrid_properties
(
last_model
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment