Skip to content

Commit

Permalink
Fix (#1234) Show incomming properties for all layers
Browse files Browse the repository at this point in the history
  • Loading branch information
RichardWallis committed Jul 1, 2016
1 parent 2b04945 commit 2167105
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sdoapp.py
Expand Up @@ -828,11 +828,13 @@ def emitClassIncomingProperties (self, cl, layers="core", out=None, hashorslash=
"""Write out a table of incoming properties for a per-type page."""
if not out:
out = self

layers=ALL_LAYERS # Show incomming properties from all layers

headerPrinted = False
di = Unit.GetUnit("domainIncludes")
ri = Unit.GetUnit("rangeIncludes")
# log.info("Incomming for %s" % cl.id)
#log.info("Incomming for %s" % cl.id)
for prop in sorted(GetSources(ri, cl, layers=layers), key=lambda u: u.id):
if (prop.superseded(layers=layers)):
continue
Expand Down

0 comments on commit 2167105

Please sign in to comment.