This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository pyhoca-gui. from 821786f check_running(): Don't strip .exe from application name new 9f5da1e fix NameError The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: pyhoca/wxgui/launcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/pyhoca-gui.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository pyhoca-gui. commit 9f5da1ebfb278c402fcecbe300c4a4993c2b811a Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Tue Apr 15 21:28:28 2014 +0200 fix NameError --- pyhoca/wxgui/launcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyhoca/wxgui/launcher.py b/pyhoca/wxgui/launcher.py index fd69b2d..35e7adc 100644 --- a/pyhoca/wxgui/launcher.py +++ b/pyhoca/wxgui/launcher.py @@ -159,7 +159,7 @@ VERSION: %s for process in w.Win32_Process(): if process.Name == _executable: _p[process.ProcessId] = process.SessionId - return len([ _p_id for _p_id in _p.keys() if _p[PROG_PID] == _p[_p_id] ]) > 1 + return len([ _p_id for _p_id in _p.keys() if _p[self.PROG_PID] == _p[_p_id] ]) > 1 def version(self): -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/pyhoca-gui.git