Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ fi
echo "This script will guide you to install the PythonMiniProbe"

echo "installing python-dev and build-essentials"
apt-get -y install python-dev build-essential 2>&1 >> /dev/null
apt-get -y install python-dev build-essential 2>&1 >> /tmp/probe_install.log

case "$(python --version 2>&1)" in
*" 2.7.9"*)
Expand All @@ -20,7 +20,7 @@ case "$(python --version 2>&1)" in
;;
*)
echo "Installing PIP!"
apt-get -y install python-pip 2>&1 >> /dev/null
apt-get -y install python-pip 2>&1 >> /tmp/probe_install.log
;;
esac

Expand Down
2 changes: 1 addition & 1 deletion miniprobe/tests/test_sensors.py
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ def test_external_ip_get_kind():
assert_equal(test_external_ip.get_kind(), 'mpexternalip')

def test_external_ip_sensor_definition():
"""http returns correct definition"""
"""external_ip returns correct definition"""
test_external_ip = external_ip.External_IP()
test_sensordef = {
"kind": test_external_ip.get_kind(),
Expand Down