Skip to content

Commit

Permalink
Update Makefile
Browse files Browse the repository at this point in the history
to help clean.
  • Loading branch information
hemna committed Dec 11, 2024
1 parent bc709b3 commit caa4bb8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ clean-build: ## remove build artifacts
rm -fr dist/
rm -fr .eggs/
find . -name '*.egg-info' -exec rm -fr {} +
find . -name '*.egg' -exec rm -f {} +
find . -name '*.egg' -exec rm -fr {} +

clean-pyc: ## remove Python file artifacts
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*.pyc' -exec rm -fr {} +
find . -name '*.pyo' -exec rm -fr {} +
find . -name '__pycache__' -exec rm -fr {} +

clean-test: ## remove test and coverage artifacts
Expand Down
1 change: 0 additions & 1 deletion aprsd/cmds/listen.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ def process_packet(self, *args, **kwargs):
self.plugin_manager.run(packet)
else:
if self.log_packets:
LOG.error("PISS")
packet_log.log(packet)
if self.plugin_manager:
# Don't do anything with the reply.
Expand Down

0 comments on commit caa4bb8

Please sign in to comment.