1
0
mirror of https://github.com/gryf/pygtktalog.git synced 2025-12-17 11:30:19 +01:00
* Bugfix in call.
This commit is contained in:
2008-03-28 19:02:13 +00:00
parent be230a4e9f
commit f40106ef3e
2 changed files with 3 additions and 3 deletions

View File

@@ -7,5 +7,5 @@ python_intrpreter="/usr/bin/python"
# don't change anything below.
current_dir="`pwd`"
cd $data_dir
#exec $python_intrpreter -OO pygtktalog.py "$current_dir" "$@"
exec $python_intrpreter pygtktalog.py "$current_dir" "$@"
exec $python_intrpreter -OO pygtktalog.py "$current_dir" "$@"
#exec $python_intrpreter pygtktalog.py "$current_dir" "$@"

View File

@@ -344,7 +344,7 @@ class MainModel(ModelMT):
def __create_internal_dirname(self):
self.cleanup()
self.internal_dirname = "/tm/pygtktalog%d" % datetime.now().microsecond
self.internal_dirname = "/tmp/pygtktalog%d" % datetime.now().microsecond
try:
os.mkdir(self.internal_dirname)
except IOError, (errno, strerror):