aboutsummaryrefslogtreecommitdiff
path: root/src/statistics/test_gnunet_statistics.py.in
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2018-05-10 12:03:13 +0200
committerChristian Grothoff <christian@grothoff.org>2018-05-10 12:03:13 +0200
commit4c8b719d9fcb5c67b4f461961d436532cbd4c8c1 (patch)
tree4b7b1bcd11df7ea1b327bf1032f7d928ab55ff93 /src/statistics/test_gnunet_statistics.py.in
parentd3245124b4b2918c6dbd64aa237e96d96279e48b (diff)
downloadgnunet-4c8b719d9fcb5c67b4f461961d436532cbd4c8c1.tar.gz
gnunet-4c8b719d9fcb5c67b4f461961d436532cbd4c8c1.zip
fix test check for TMPDIR: do not throw exception if variable does not exist
Diffstat (limited to 'src/statistics/test_gnunet_statistics.py.in')
-rw-r--r--src/statistics/test_gnunet_statistics.py.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/statistics/test_gnunet_statistics.py.in b/src/statistics/test_gnunet_statistics.py.in
index 8f6966b6f..96714cf9a 100644
--- a/src/statistics/test_gnunet_statistics.py.in
+++ b/src/statistics/test_gnunet_statistics.py.in
@@ -8,10 +8,10 @@ import subprocess
8import time 8import time
9 9
10if os.name == "nt": 10if os.name == "nt":
11 tmp = os.getenv ("TEMP") 11 tmp = os.getenv ("TEMP")
12elif os.environ["TMPDIR"]: 12elif None != os.environ.get("TMPDIR"):
13 tmp = os.getenv("TMPDIR") 13 tmp = os.getenv("TMPDIR")
14elif os.environ["TMP"]: 14elif None != os.environ.get("TMP"):
15 tmp = os.getenv("TMP") 15 tmp = os.getenv("TMP")
16else: 16else:
17 tmp = "/tmp" 17 tmp = "/tmp"