src/mercurialserver/paths.py
author Paul Crowley <paul@lshift.net>
Thu, 15 Oct 2009 09:26:19 +0100
changeset 142 fb64f9ac44c5
parent 79 3a58a95fae2f
child 165 3606d60b07e5
permissions -rw-r--r--
Remove blank lines before screen output

# 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"