Sandro Bonazzola has uploaded a new change for review. Change subject: packaging: setup: Fix _validName return ......................................................................
packaging: setup: Fix _validName return Fix regression introduced in http://gerrit.ovirt.org/36307 Change-Id: I20d883c3021f8babbf58ccf45b6306cfd421a0c2 Signed-off-by: Sandro Bonazzola <[email protected]> --- M src/plugins/ovirt-hosted-engine-setup/storage/storage.py 1 file changed, 2 insertions(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-hosted-engine-setup refs/changes/75/37475/1 diff --git a/src/plugins/ovirt-hosted-engine-setup/storage/storage.py b/src/plugins/ovirt-hosted-engine-setup/storage/storage.py index 3906802..99058d3 100644 --- a/src/plugins/ovirt-hosted-engine-setup/storage/storage.py +++ b/src/plugins/ovirt-hosted-engine-setup/storage/storage.py @@ -1,6 +1,6 @@ # # ovirt-hosted-engine-setup -- ovirt hosted engine setup -# Copyright (C) 2013-2014 Red Hat, Inc. +# Copyright (C) 2013-2015 Red Hat, Inc. # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -277,6 +277,7 @@ self._RE_NOT_ALPHANUMERIC.search(name) ): return False + return True def _removeNFSTrailingSlash(self, path): nfspath = path.split(":") -- To view, visit http://gerrit.ovirt.org/37475 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I20d883c3021f8babbf58ccf45b6306cfd421a0c2 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-hosted-engine-setup Gerrit-Branch: master Gerrit-Owner: Sandro Bonazzola <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
