Projet

Général

Profil

0001-use-python3-urlparse-namespace.patch

Christophe Siraut, 19 septembre 2019 16:23

Télécharger (1,03 ko)

Voir les différences:

Subject: [PATCH] use python3 urlparse namespace

 hobo/agent/common/management/commands/hobo_deploy.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
hobo/agent/common/management/commands/hobo_deploy.py
6 6
import subprocess
7 7
import sys
8 8
import tempfile
9
import urlparse
10 9

  
11 10
from django.conf import settings
12 11
from django.core.management.base import BaseCommand, CommandError
13 12
from django.core.management import call_command, get_commands
13
from django.utils.six.moves.urllib import parse as urlparse
14 14

  
15 15
from tenant_schemas.utils import tenant_context
16 16
from hobo.multitenant.middleware import TenantMiddleware, TenantNotFound
17
-