-
-
Notifications
You must be signed in to change notification settings - Fork 100
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
Split used to get port #128
Comments
I just ran into an error for line 1084 (cause for this error was line 1082) and was able to fix it locally by using rsplit instead of split. There may be other places that need to be adjusted but it would be a first step in the right direction to replace this split command by rsplit (it doesn't break ipv4 addresses as for those rsplit and split should always lead to the same result). Since I fixed this locally I didn't run into the error again. |
Thanks for clarifying - I've made some fixes so hopefully this should work now. |
Thanks for the fix! 😃 |
I figure rsplit should be used here instead of split to get the port. Otherwise we run into an issue with ipv6 addresses.
px/px.py
Line 1082 in 5bacc57
The text was updated successfully, but these errors were encountered: