From 60b14d751fbbc143aa7f0c4ce3a751f514780276 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Fri, 9 Aug 2019 10:14:31 +0100 Subject: [PATCH] Comment --- person.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/person.py b/person.py index a607fe716..13d2564a0 100644 --- a/person.py +++ b/person.py @@ -242,6 +242,8 @@ def createPerson(baseDir: str,nickname: str,domain: str,port: int, \ if not validNickname(nickname): return None,None,None,None + # If a config.json file doesn't exist then don't decrement + # remaining registrations counter remainingConfigExists=getConfigParam(baseDir,'registrationsRemaining') if remainingConfigExists: registrationsRemaining=int(remainingConfigExists)