blob: 0f12307c87671f2fd911a51738c6057bcb82c638 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env python3
import sys
print('''This unmaintained and undocumented script was removed in preference
for qmp-shell. The assumption is that most users are using either
qmp-shell, socat, or pasting/piping JSON into stdio. The duplication of
facilities here is unwanted, and the divergence of syntax harmful.''',
file=sys.stderr)
sys.exit(1)
|