From 117473b3cdbc48eba18682734178d7a2464b39f0 Mon Sep 17 00:00:00 2001 From: Usman Nasir Date: Wed, 17 Jun 2020 14:57:51 +0500 Subject: [PATCH] bug fix: update build number --- baseTemplate/views.py | 2 +- install/install.py | 2 +- loginSystem/views.py | 2 +- plogical/adminPass.py | 2 +- plogical/backupUtilities.py | 2 +- plogical/upgrade.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/baseTemplate/views.py b/baseTemplate/views.py index 2fee1a4d1..9538ad618 100755 --- a/baseTemplate/views.py +++ b/baseTemplate/views.py @@ -19,7 +19,7 @@ from plogical.processUtilities import ProcessUtilities # Create your views here. VERSION = '2.0' -BUILD = 1 +BUILD = 2 @ensure_csrf_cookie def renderBase(request): diff --git a/install/install.py b/install/install.py index 6dff30fd7..fc5e7d4f5 100755 --- a/install/install.py +++ b/install/install.py @@ -15,7 +15,7 @@ from stat import * import stat VERSION = '2.0' -BUILD = 1 +BUILD = 2 char_set = {'small': 'abcdefghijklmnopqrstuvwxyz', 'nums': '0123456789', diff --git a/loginSystem/views.py b/loginSystem/views.py index cfb93a717..2fdef9153 100644 --- a/loginSystem/views.py +++ b/loginSystem/views.py @@ -19,7 +19,7 @@ from django.utils import translation # Create your views here. VERSION = '2.0' -BUILD = 1 +BUILD = 2 def verifyLogin(request): try: diff --git a/plogical/adminPass.py b/plogical/adminPass.py index 653e3039a..ec09322c5 100755 --- a/plogical/adminPass.py +++ b/plogical/adminPass.py @@ -13,7 +13,7 @@ from packages.models import Package from baseTemplate.models import version VERSION = '2.0' -BUILD = 1 +BUILD = 2 if not os.geteuid() == 0: sys.exit("\nOnly root can run this script\n") diff --git a/plogical/backupUtilities.py b/plogical/backupUtilities.py index 2be766f5a..3798cee80 100755 --- a/plogical/backupUtilities.py +++ b/plogical/backupUtilities.py @@ -47,7 +47,7 @@ except: pass VERSION = '2.0' -BUILD = 1 +BUILD = 2 ## I am not the monster that you think I am.. diff --git a/plogical/upgrade.py b/plogical/upgrade.py index 2afd36ee9..3c31e121e 100755 --- a/plogical/upgrade.py +++ b/plogical/upgrade.py @@ -14,7 +14,7 @@ import random import string VERSION = '2.0' -BUILD = 1 +BUILD = 2 CENTOS7 = 0 CENTOS8 = 1