-
Notifications
You must be signed in to change notification settings - Fork 662
New issue
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
convert bytes into a string (subprocess.check_output return value) #2152
Conversation
Relates to issue #2158 |
woff is supported by all relevant browser versions: https://caniuse.com/woff woff2 should be added as alternative with enhanced compression in a dedicated PR. Signed-off-by: MichaIng <micha@dietpi.com>
#2322) * Run apt commands separately to undersstand performance Running these commands separately delivers the same end result but provides us more visibility into where things are broken or stuck and how long each command is taking. * python3 -m build * https://pypi.org/project/build * pip install . * Delete requirements.txt * Update and rename lint_python.yml to test_python.yml
If you have a camera_name that is only numbers then you would get an AttributeError if you add multiple cameras.
Co-authored-by: MichaIng <micha@dietpi.com>
@takashikumagai |
Do you mean picking the commit that removes the buffering policy (75c68de) and rebasing only that specific commit on the dev? |
Jep, exactly. |
You need to rebase onto current I can also do that from here, if you want. |
I got to admit I'm not too familiar with this.. I'm trying to figure this one out |
Ah no I saw it wrong. The issue is that you did not rebase your branch, but that you merged |
Ugh, I'm sorry about this. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah wait. It may cause issues with other PRs now, especially since your original commit which changes a removed/moved file is still present.
I think easiest is to create a new PR or a new branch at least, based on dev
with only single change done in a single commit.
That sounds like something I can do. |
I'll create a new fork with the current dev branch, then make the same change and make a new pull request. Does that sound right? |
No problem btw. I think in GitHub web interface rebasing is actually not possible, a major lack. This would need to be done via |
🚀 |
Well, I'm not familiar with the web interface, tbh. But if I re-create the same commit and make a very standard merge request, it will be okay I hope? I'll be doing so in a minute. |
Jep that should work fine. |
Just created a very minimalistic PR for the dev branch. Can you take a look? |
Thank you so much for your patience. Couldn't have done it without your help. 🐱 |
subprocess.check_output() in Python 3 returns bytes instead of a string, and therefore the return value needs to be converted into a string in order to call split() on it in L42. Not doing this causes a type mismatch error: