Merge remote-tracking branch 'origin/v1.9'

This commit is contained in:
Adolfo Gómez García 2015-11-02 00:47:08 +01:00
commit 4695dcaa0c
2 changed files with 2 additions and 2 deletions

View File

@ -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:

View File

@ -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('.')