From 782b85c37316e16f2f784c4e64926b8771a99510 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bar=C4=B1=C5=9F=20Metin?= Date: Thu, 29 Jul 2010 19:05:42 +0200 Subject: [PATCH] use lower-case hostnames like in emails --- system/plcsh_stress_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/plcsh_stress_test.py b/system/plcsh_stress_test.py index 4a76874..ef862bc 100755 --- a/system/plcsh_stress_test.py +++ b/system/plcsh_stress_test.py @@ -79,7 +79,7 @@ def randhostname(namelengths): hostname = 'a' + randstr(namelengths['hostname1'], letters + digits + '-') + '1.' + \ 'b' + randstr(namelengths['hostname1'], letters + digits + '-') + '2.' + \ 'c' + randstr(namelengths['hostname2'], letters) - return hostname + return hostname.lower() def randpath(length): parts = [] -- 2.47.0