parent
e8ac35f047
commit
b174d5cf99
|
@ -188,6 +188,7 @@ class Application(object):
|
||||||
width = self.x - 1
|
width = self.x - 1
|
||||||
|
|
||||||
# run user custom code here
|
# run user custom code here
|
||||||
|
self.rcerror = None
|
||||||
self.loadrc()
|
self.loadrc()
|
||||||
|
|
||||||
# initialize our buffers
|
# initialize our buffers
|
||||||
|
@ -477,7 +478,10 @@ class Application(object):
|
||||||
def loadrc(self):
|
def loadrc(self):
|
||||||
path = os.path.join(os.getenv('HOME'), '.pmc', 'conf')
|
path = os.path.join(os.getenv('HOME'), '.pmc', 'conf')
|
||||||
if os.path.exists(path):
|
if os.path.exists(path):
|
||||||
execfile(path)
|
try:
|
||||||
|
execfile(path)
|
||||||
|
except Exception, e:
|
||||||
|
self.rcerror = e
|
||||||
|
|
||||||
# the mighty run-loop!
|
# the mighty run-loop!
|
||||||
def run(self):
|
def run(self):
|
||||||
|
|
Loading…
Reference in New Issue