BeremizIDE.py
changeset 1680 6db967480b7d
parent 1662 8816f7316d9c
child 1684 1447424a7029
equal deleted inserted replaced
1679:2fcea15858a5 1680:6db967480b7d
    28 import tempfile
    28 import tempfile
    29 import shutil
    29 import shutil
    30 import random
    30 import random
    31 import time
    31 import time
    32 import version
    32 import version
       
    33 import util.paths as paths
    33 from types import ListType
    34 from types import ListType
    34 
    35 
    35 beremiz_dir = os.path.dirname(os.path.realpath(__file__))
    36 beremiz_dir = paths.AbsDir(__file__)
    36 
    37 
    37 def Bpath(*args):
    38 def Bpath(*args):
    38     return os.path.join(beremiz_dir,*args)
    39     return os.path.join(beremiz_dir,*args)
    39 
    40 
    40 
    41