forked from shaba/openuds
Merge remote-tracking branch 'origin/v1.9'
This commit is contained in:
commit
4695dcaa0c
@ -61,6 +61,7 @@ class Tickets(Handler):
|
||||
authSmallName: tag of the authenticator (alias for "authTag") | But must include one of theese
|
||||
authTag: tag of the authenticator |
|
||||
auth: Name of authenticator |
|
||||
userIp: Direccion IP del cliente. Si no se pasa, no se puede filtar
|
||||
username:
|
||||
password:
|
||||
groups:
|
||||
|
@ -35,7 +35,6 @@ from __future__ import unicode_literals
|
||||
from django.core.management.base import BaseCommand
|
||||
from uds.core.util.Config import Config, GLOBAL_SECTION, GlobalConfig
|
||||
import logging
|
||||
import urllib
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
@ -49,7 +48,7 @@ class Command(BaseCommand):
|
||||
GlobalConfig.initialize()
|
||||
try:
|
||||
for param in args:
|
||||
config = urllib.unquote(param).decode('utf-8')
|
||||
config = param.decode('utf-8')
|
||||
logger.debug('Config: {}'.format(config))
|
||||
first, value = config.split('=')
|
||||
first = first.split('.')
|
||||
|
Loading…
Reference in New Issue
Block a user