Skip to content

Commit

Permalink
hide dropping message in json package file (esp8266#6070)
Browse files Browse the repository at this point in the history
  • Loading branch information
d-a-v authored May 11, 2019
1 parent 024b1c1 commit ac02aff
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions package/drop_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@ def drop_version(todrop, obj):
out = [];
for o in obj:
version = o['version'].encode('ascii')
if version == todrop:
print("Dropping version {0}".format(todrop))
else:
if version != todrop:
out.append(o)
return out

Expand Down

0 comments on commit ac02aff

Please sign in to comment.