We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 024b1c1 commit ac02affCopy full SHA for ac02aff
1 file changed
package/drop_versions.py
@@ -19,9 +19,7 @@ def drop_version(todrop, obj):
19
out = [];
20
for o in obj:
21
version = o['version'].encode('ascii')
22
- if version == todrop:
23
- print("Dropping version {0}".format(todrop))
24
- else:
+ if version != todrop:
25
out.append(o)
26
return out
27
0 commit comments