Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75ebce4 commit 70dedffCopy full SHA for 70dedff
setup.py
@@ -70,9 +70,8 @@ def find_package_data(
70
or fn.lower() == pattern.lower()):
71
bad_name = True
72
if show_ignored:
73
- print >> sys.stderr, (
74
- "Directory %s ignored by pattern %s"
75
- % (fn, pattern))
+ print("Directory %s ignored by pattern %s" %
+ (fn, pattern), file=sys.stderr)
76
break
77
if bad_name:
78
continue
@@ -93,9 +92,8 @@ def find_package_data(
93
92
94
95
96
97
- "File %s ignored by pattern %s"
98
+ print("File %s ignored by pattern %s" %
99
100
101
0 commit comments