From b7d08e2014b3e5182f9a0af5343875537116e4d4 Mon Sep 17 00:00:00 2001 From: William McBrine Date: Sat, 11 Feb 2012 12:16:31 -0500 Subject: [PATCH] Don't let the GUID character set vary by locale. --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.py b/config.py index cedb2c7..114ad2d 100644 --- a/config.py +++ b/config.py @@ -22,7 +22,7 @@ def init(argv): config = ConfigParser.ConfigParser() - guid = ''.join([random.choice(string.letters) for i in range(10)]) + guid = ''.join([random.choice(string.ascii_letters) for i in range(10)]) our_ip = '' p = os.path.dirname(__file__) -- 2.11.4.GIT