We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdc5b45 commit 82ed109Copy full SHA for 82ed109
setuptools/command/sdist.py
@@ -189,7 +189,7 @@ def _manifest_is_not_generated(self):
189
190
with open(self.manifest, 'rb') as fp:
191
first_line = fp.readline()
192
- return first_line != '# file GENERATED by distutils, do NOT edit\n'.encode()
+ return first_line != b'# file GENERATED by distutils, do NOT edit\n'
193
194
def read_manifest(self):
195
"""Read the manifest file (named by 'self.manifest') and use it to
0 commit comments