src/mercurialserver/paths.py
author Paul Crowley <paul@lshift.net>
Thu, 28 May 2009 10:43:30 +0100
branchdebian
changeset 99 e99262dfa950
parent 79 3a58a95fae2f
child 165 3606d60b07e5
permissions -rw-r--r--
Don't know if I'm making progress here

# Copyright 2008-2009 LShift Ltd

# Crude but it will do

import sys
import os.path

def setExePath():
    global _exePath
    _exePath = os.path.dirname(os.path.abspath(sys.argv[0]))

def getExePath():
    return _exePath

def getEtcPath():
    return "/etc/mercurial-server"