11 lines
169 B
Python
11 lines
169 B
Python
# -*- coding:utf-8 -*-
|
|
|
|
|
|
import sys
|
|
sys.path.append('/usr/scripts/')
|
|
|
|
from lib import *
|
|
|
|
# En vrai, ce truc est deprecated
|
|
import lib.deprecated
|
|
lib.deprecated.module()
|