Skip to content
This repository has been archived by the owner on Jun 21, 2022. It is now read-only.

Commit

Permalink
Merge pull request #275 from scikit-hep/issue-274
Browse files Browse the repository at this point in the history
should fix #274
  • Loading branch information
jpivarski authored May 10, 2019
2 parents fc40682 + ebd5086 commit 42ac152
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion uproot/interp/objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ def speedbump(self, value):
return out

def compatible(self, other):
return isinstance(other, asgenobj) and self.cls.__name__ == other.cls.__name__
return isinstance(other, asgenobj) and self.generator.cls.__name__ == other.generator.cls.__name__

def __repr__(self):
return "asgenobj({0})".format(self.generator)
Expand Down
2 changes: 1 addition & 1 deletion uproot/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import re

__version__ = "3.5.1"
__version__ = "3.5.2"
version = __version__
version_info = tuple(re.split(r"[-\.]", __version__))

Expand Down

0 comments on commit 42ac152

Please sign in to comment.