We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This makes it seem str is expected, but in fact
str
repo.get_walker(include = '0' * 40)
results in:
AttributeError: 'str' object has no attribute 'decode'
The text was updated successfully, but these errors were encountered:
Note that Walker.__init__ already has this:
Walker.__init__
if isinstance(include, bytes): # TODO(jelmer): Really, this should require a single type. # Print deprecation warning here? include = [include]
So presumably this can just be deleted.
Sorry, something went wrong.
object ids are always bytestrings in Dulwich
The line you're referencing is a remnant from when Dulwich supported Python 2; I've create a PR to remove it. Thanks!
260a6d9
No branches or pull requests
This makes it seem
str
is expected, but in factresults in:
The text was updated successfully, but these errors were encountered: