Skip to content
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

some minor issues and their resolution #9

Open
pohutukawa opened this issue Aug 15, 2023 · 0 comments
Open

some minor issues and their resolution #9

pohutukawa opened this issue Aug 15, 2023 · 0 comments

Comments

@pohutukawa
Copy link

There's a dependency not mentioned for this to be installed: argcomplete (Python package), or via apt it's python3-argcomplete

The last line in update_feeds.sh requires a lower case -v command line parameter, not the upper case for the list of web crawlers.

helpers.py needs a minor tweak to make it work with empty lines and comment lines in the web crawler file:

-            if line and line[0] == "#":
-                continue
-
-            self.addresses.append(self.ip2int(line))
+            if line and line[0] != "#":
+                self.addresses.append(self.ip2int(line))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant