src/mercurialserver/paths.py
author Paul Crowley <paul@lshift.net>
Mon, 12 Oct 2009 16:25:02 +0100
changeset 107 84e9e33d866b
parent 79 3a58a95fae2f
child 165 3606d60b07e5
permissions -rw-r--r--
Fixes, plus base64 what you don't trust

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