EdOverflow

Results 52 comments of EdOverflow
trafficstars

@x1n5h3n, would you be willing to retest your steps above? Does the problem still occur with the latest master branch?

Yep, you are absolutely right, @nikitastupin. I noticed this when @x1n5h3n tried reproducing the problem. As you pointed out, `html` is a built-in module in Python 3. I will remove...

If we could add a couple of unit tests to cover this problem, I would be more than happy to merge this PR.

You can pipe the output into `sed`. ``` $ python linkfinder.py -i https://example.com/example.js -o cli | sed 's#^\/#https://example.com/#g' ```

@jaikishantulswani, as far as I can tell this might be too difficult to solve as is because it is not always clear which host the JS file belongs to. In...

@alex1704 & @jarombrown, please feel free to submit a pull request for this issue if you think your updated regular expression fixes this issue and I will review it.

Thank you for the issue ticket, @anonymouse65. Would you be willing to share the full command you ran and what OS you are using (including exact version if possible)?

Does the following work? ``` $ python linkfinder.py -i https://example.com/#Login -o cli -d ```

Thank you for bringing this to my attention, @Bankde. I personally prefer sticking to Python 3 since Python 2 will retire soon. This does mean we should probably update the...

Updated accordingly. Let me know if that works for you, @Bankde.