Skip to content

Commit

Permalink
fixes #49 - issue with lineage report
Browse files Browse the repository at this point in the history
  • Loading branch information
jfischer committed Jan 15, 2020
1 parent 62d3a2f commit 6d48709
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dataworkspaces/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Copyright 2018,2019 by MPI-SWS and Data-ken Research. Licensed under Apache 2.0. See LICENSE.txt.

__version__ = '1.2.1'
__version__ = '1.2.2'
2 changes: 1 addition & 1 deletion dataworkspaces/utils/lineage_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1432,7 +1432,7 @@ def input_to_str(cert):
lg = store.retrieve_entry(instance, cert.ref)
except LineageNotFoundError:
return "%s (%s)" % (ref_name(cert.ref), cert_name(cert))
cur_cert = lg.get_cert_for_ref(ref)
cur_cert = lg.get_cert_for_ref(cert.ref)
if cur_cert is None or cur_cert!=cert:
return "%s (%s)" % (ref_name(cert.ref), cert_name(cert))
else:
Expand Down

0 comments on commit 6d48709

Please sign in to comment.