You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
224 B
Python
13 lines
224 B
Python
|
3 years ago
|
#!/usr/bin/python
|
||
|
|
# -*- coding: UTF-8 -*-
|
||
|
|
|
||
|
|
|
||
|
|
import os
|
||
|
|
|
||
|
|
|
||
|
|
chemin_actuel = os.path.dirname(os.path.abspath(__file__))
|
||
|
|
print(chemin_actuel)
|
||
|
|
|
||
|
|
templates = os.path.join(chemin_actuel, "app", "templates", "static")
|
||
|
|
print(templates)
|