Fix secure
This commit is contained in:
@@ -5,8 +5,8 @@ import string
|
||||
class RANDOM:
|
||||
"""Random strings generator"""
|
||||
|
||||
def gen(self, length='24'):
|
||||
def gen(self):
|
||||
short_random = ''.join([random.choice
|
||||
(string.ascii_letters + string.digits)
|
||||
for n in range(length)])
|
||||
for n in range(24)])
|
||||
return short_random
|
||||
|
||||
@@ -13,7 +13,7 @@ class WOVar():
|
||||
"""Intialization of core variables"""
|
||||
|
||||
# WordOps version
|
||||
wo_version = "3.9.9.2"
|
||||
wo_version = "3.9.9.3"
|
||||
# WordOps packages versions
|
||||
wo_wp_cli = "2.3.0"
|
||||
wo_adminer = "4.7.3"
|
||||
|
||||
Reference in New Issue
Block a user