fix copy/paste bug
Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/299cccf7 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/299cccf7 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/299cccf7 Branch: refs/heads/marvin_refactor Commit: 299cccf779f75c3ba04d9ec7303bed88394c3562 Parents: 1fed7df Author: Edison Su <[email protected]> Authored: Wed Apr 24 18:31:45 2013 -0700 Committer: Edison Su <[email protected]> Committed: Wed Apr 24 18:32:06 2013 -0700 ---------------------------------------------------------------------- scripts/vm/network/security_group.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/299cccf7/scripts/vm/network/security_group.py ---------------------------------------------------------------------- diff --git a/scripts/vm/network/security_group.py b/scripts/vm/network/security_group.py index 49d9be6..6c12409 100755 --- a/scripts/vm/network/security_group.py +++ b/scripts/vm/network/security_group.py @@ -275,7 +275,7 @@ def remove_secip_log_for_vm(vmName): try: os.remove(logfilename) except: - util.SMlog("Failed to delete rule log file " + logfilename) + logging.debug("Failed to delete rule log file " + logfilename) result = False return result
