Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/utils.py
blob: 74bcc9e5c7fce2a4373feac8f7e44cb97c1e93a4 (plain)
1
2
3
4
5
6
7
8
9

import os

def get_dir():
    path = os.path.dirname(__file__)
    if path == '':
        path = os.path.abspath('.')
    return os.path.join(path, 'images/')