The branch, build-main has been updated via 406d0b9b7f4708f96d94bd6e98c382397dd94874 (commit) via 391558b4a7469a8daf4bfbda3c064aea5b7e5ccb (commit) via 14c601faad831198ca89c882071f7443d9a33017 (commit) from 1ff2562caacb61beab3fc47575b1a24b22f6283f (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 ----------------------------------------------------------------- ----------------------------------------------------------------------- Summary of changes: debian/changelog | 8 ++++++++ pyhoca/cli/__init__.py | 2 +- pyhoca/cli/frontend.py | 6 ++++-- 3 files changed, 13 insertions(+), 3 deletions(-) The diff of changes is: diff --git a/debian/changelog b/debian/changelog index 1b4eb47..27a3d84 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +pyhoca-cli (0.2.0.2-0~x2go1) unstable; urgency=low + + * New upstream version (0.2.0.2): + - Do not fail if HOME dir is read-only, needed for building with + sbuild. + + -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Mon, 23 Jul 2012 21:42:33 +0200 + pyhoca-cli (0.2.0.1-0~x2go1) unstable; urgency=low * New upstream version (0.2.0.1): diff --git a/pyhoca/cli/__init__.py b/pyhoca/cli/__init__.py index 9f7fef9..408a2a5 100644 --- a/pyhoca/cli/__init__.py +++ b/pyhoca/cli/__init__.py @@ -25,6 +25,6 @@ For further information on X2Go, please visit the X2Go wiki: http://wiki.x2go.org """ -__VERSION__ = "0.2.0.1" +__VERSION__ = "0.2.0.2" from frontend import * diff --git a/pyhoca/cli/frontend.py b/pyhoca/cli/frontend.py index b957fae..7636399 100644 --- a/pyhoca/cli/frontend.py +++ b/pyhoca/cli/frontend.py @@ -44,11 +44,13 @@ from x2go.utils import touch_file as _touch_file # define and create known_hosts file (if not there) ssh_known_hosts_filename = os.path.join(x2go.LOCAL_HOME, x2go.X2GO_SSH_ROOTDIR, 'known_hosts') if not os.path.isfile(ssh_known_hosts_filename): - _touch_file(ssh_known_hosts_filename) + try: _touch_file(ssh_known_hosts_filename) + except OSError: pass # define and create ssh_config file (if not there) ssh_config_filename = os.path.join(x2go.LOCAL_HOME, x2go.X2GO_SSH_ROOTDIR, 'config') if not os.path.isfile(ssh_config_filename): - _touch_file(ssh_config_filename) + try: _touch_file(ssh_config_filename) + except OSError: pass # sometimes we have to fail... hooks/post-receive -- pyhoca-cli.git (Python X2Go Client (command line client)) 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 "pyhoca-cli.git" (Python X2Go Client (command line client)).