The branch, master has been updated via aef55f5226878ffc0a885604e3e4ed505dfed2f2 (commit) from af2749db6a96fd14cffa881f92c09ebae6e3bbcc (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit aef55f5226878ffc0a885604e3e4ed505dfed2f2 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Mon Apr 16 17:26:14 2012 +0200 use makedirs instead of mkdir ----------------------------------------------------------------------- Summary of changes: x2go/pulseaudio.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) The diff of changes is: diff --git a/x2go/pulseaudio.py b/x2go/pulseaudio.py index 6d3c8f3..f079cfe 100644 --- a/x2go/pulseaudio.py +++ b/x2go/pulseaudio.py @@ -102,7 +102,7 @@ class X2goPulseAudio(threading.Thread): cmd_options = " %s" % " ".join(cmd_options) if not os.path.isdir(os.path.join(_LOCAL_HOME, '.pulse', '%s-runtime' % socket.gethostname())): - os.mkdir(os.path.join(_LOCAL_HOME, '.pulse', '%s-runtime' % socket.gethostname())) + os.makedirs(os.path.join(_LOCAL_HOME, '.pulse', '%s-runtime' % socket.gethostname())) self.logger('starting PulseAudio server with command line: %s%s' % (cmd, cmd_options), loglevel=log.loglevel_DEBUG) si = win32process.STARTUPINFO() hooks/post-receive -- python-x2go.git (Python X2Go Client API) This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "python-x2go.git" (Python X2Go Client API).