fix mgr under py3
This commit is contained in:
parent
050270a725
commit
2621e5e564
1 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
|||
# -*- coding: UTF-8 -*-
|
||||
|
||||
import traceback
|
||||
from shadowsocks import common, shell
|
||||
from shadowsocks import shell
|
||||
from configloader import load_config, get_config
|
||||
import random
|
||||
import getopt
|
||||
|
@ -50,7 +50,7 @@ class MuMgr(object):
|
|||
return ret
|
||||
|
||||
def rand_pass(self):
|
||||
return b''.join([random.choice(b'''ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789~-_=+(){}[]^&%$@''') for i in range(8)])
|
||||
return ''.join([random.choice('''ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789~-_=+(){}[]^&%$@''') for i in range(8)])
|
||||
|
||||
def add(self, user):
|
||||
up = {'enable': True, 'u': 0, 'd': 0, 'method': "aes-128-cfb",
|
||||
|
|
Loading…
Add table
Reference in a new issue