From a3e97009ff292e516ba7eba3bd0e2ce1ba5c8e0c Mon Sep 17 00:00:00 2001 From: Sagi Dayan Date: Sat, 1 Aug 2015 18:01:14 +0300 Subject: [PATCH] For Matan - Random Avatar --- SE_API/API.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SE_API/API.py b/SE_API/API.py index 340b5f8..c98b2fe 100644 --- a/SE_API/API.py +++ b/SE_API/API.py @@ -208,7 +208,8 @@ def login(): debug = True # Change In Production if debug: - counter = 300 + import random + counter = random.randrange(300,400) @auto.doc() @app.route('/debug/login')