We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4241776 + eb39aeb commit 46fc01bCopy full SHA for 46fc01b
ethereum/__init__.py
@@ -17,11 +17,11 @@
17
18
__version__ = None
19
try:
20
- _dist = get_distribution('pyethapp')
+ _dist = get_distribution('ethereum')
21
# Normalize case for Windows systems
22
dist_loc = os.path.normcase(_dist.location)
23
here = os.path.normcase(__file__)
24
- if not here.startswith(os.path.join(dist_loc, 'pyethapp')):
+ if not here.startswith(os.path.join(dist_loc, 'ethereum')):
25
# not installed, but there is another version that *is*
26
raise DistributionNotFound
27
__version__ = _dist.version
0 commit comments