Ensure only telnetliquidsoap has telnet responsibilities

-also added module docstrings
This commit is contained in:
Martin Konecny 2013-05-16 16:19:00 -04:00
parent 888e6db812
commit 060980d8c6
13 changed files with 303 additions and 389 deletions

View file

@ -1,9 +1,9 @@
#!/bin/bash
which py.test
pytest_exist=$?
pytest_exist="$?"
if [ "$pytest_exist" != "0" ]; then
if [ $pytest_exist != "0" ]; then
echo "Need to have py.test installed. Exiting..."
exit 1
fi