Skip to content

Commit

Permalink
Merge pull request #75 from bap2pecs/patch-1
Browse files Browse the repository at this point in the history
fix FileNotFoundError in i.py
  • Loading branch information
niccoloraspa authored Jun 13, 2024
2 parents 2913a5c + f5e9aaf commit ad9e82e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion i.py
Original file line number Diff line number Diff line change
Expand Up @@ -664,7 +664,7 @@ def download_binary(network):
break
else:
print("Invalid input. Please enter 'skip' or 'overwrite'.")
except subprocess.CalledProcessError:
except FileNotFoundError:
print("osmosisd is not installed. Proceeding with download.")

operating_system = platform.system().lower()
Expand Down

0 comments on commit ad9e82e

Please sign in to comment.