From dcc993a20e1d4aa4dab973cfc4c9e5fcf247dd1f Mon Sep 17 00:00:00 2001 From: jakedt Date: Tue, 15 Apr 2014 14:27:00 -0400 Subject: [PATCH] Fix the cache buster. --- endpoints/common.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/endpoints/common.py b/endpoints/common.py index 33986fd8d..3887f29fc 100644 --- a/endpoints/common.py +++ b/endpoints/common.py @@ -112,8 +112,6 @@ def handle_dme(ex): def random_string(): - return 'REMOVEME' - random = SystemRandom() return ''.join([random.choice(string.ascii_uppercase + string.digits) for _ in range(8)])