summaryrefslogtreecommitdiff
path: root/runtests.sh
diff options
context:
space:
mode:
authorIlya Etingof <etingof@gmail.com>2016-03-30 23:29:55 +0200
committerIlya Etingof <etingof@gmail.com>2016-03-30 23:29:55 +0200
commit8e655f46e39b78290818345bb07e98dbe7b063b9 (patch)
treeb4053b17e0df7eac0b84a7f21314f24ded43ea95 /runtests.sh
parent39dac83818d73bdb78e47b005903a86966bd1f55 (diff)
downloadpysnmp-git-8e655f46e39b78290818345bb07e98dbe7b063b9.tar.gz
pep8 fixes
Diffstat (limited to 'runtests.sh')
-rwxr-xr-xruntests.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtests.sh b/runtests.sh
index b4b0075d..22fab7e1 100755
--- a/runtests.sh
+++ b/runtests.sh
@@ -13,13 +13,13 @@ for x in examples/hlapi/asyncore/sync/manager/cmdgen/*.py \
examples/smi/manager/*py \
examples/smi/agent/*.py
do
- case "$x" in
+ case "${x}" in
*spoof*|*ipv6*)
- echo "skipping $x"
+ echo "skipping ${x}"
continue
;;
*)
- python $x
+ python "${x}"
;;
esac
done \ No newline at end of file