Skip to content

Commit ecb58b4

Browse files
committed
Merge pull request #18 from eagle00789/development
Development
2 parents a4fd919 + a1d576f commit ecb58b4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fi
99
echo "This script will guide you to install the PythonMiniProbe"
1010

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

1414
case "$(python --version 2>&1)" in
1515
*" 2.7.9"*)
@@ -20,7 +20,7 @@ case "$(python --version 2>&1)" in
2020
;;
2121
*)
2222
echo "Installing PIP!"
23-
apt-get -y install python-pip 2>&1 >> /dev/null
23+
apt-get -y install python-pip 2>&1 >> /tmp/probe_install.log
2424
;;
2525
esac
2626

miniprobe/tests/test_sensors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ def test_external_ip_get_kind():
499499
assert_equal(test_external_ip.get_kind(), 'mpexternalip')
500500

501501
def test_external_ip_sensor_definition():
502-
"""http returns correct definition"""
502+
"""external_ip returns correct definition"""
503503
test_external_ip = external_ip.External_IP()
504504
test_sensordef = {
505505
"kind": test_external_ip.get_kind(),

0 commit comments

Comments
 (0)