Skip to content

Commit

Permalink
Fix python3 compat #121
Browse files Browse the repository at this point in the history
  • Loading branch information
svpcom committed Mar 14, 2021
1 parent a1220bd commit b0da687
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ReloadPropagatedFrom=wifibroadcast.service
[Service]
Type=simple
EnvironmentFile=/etc/default/wifibroadcast
ExecStart=/usr/bin/python -m telemetry.server %i ${WFB_NICS}
ExecStart=/usr/bin/wfb-server %i ${WFB_NICS}
TimeoutStopSec=5s
Restart=on-failure
RestartSec=5s
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ def _make_spec_file(self):
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
zip_safe=False,
entry_points={'console_scripts': ['wfb-cli=telemetry.cli:main',
'wfb-test-latency=telemetry.latency_test:main']},
'wfb-test-latency=telemetry.latency_test:main',
'wfb-server=telemetry.server:main']},
package_data={'telemetry.conf': ['master.cfg', 'site.cfg']},
data_files = [('/usr/bin', ['wfb_tx', 'wfb_rx', 'wfb_keygen']),
('/lib/systemd/system', ['scripts/storm32.service',
Expand Down

0 comments on commit b0da687

Please sign in to comment.