From 2698e6a728ef8040f4fdf605a6892e79a2e76b12 Mon Sep 17 00:00:00 2001 From: Scott Baker Date: Fri, 20 Jun 2014 00:09:00 -0700 Subject: [PATCH] fix donotprintme printed by print() --- planetstack/core/static/shell/opencloud_shell.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/planetstack/core/static/shell/opencloud_shell.js b/planetstack/core/static/shell/opencloud_shell.js index 9091353..b08dbfa 100644 --- a/planetstack/core/static/shell/opencloud_shell.js +++ b/planetstack/core/static/shell/opencloud_shell.js @@ -95,7 +95,7 @@ ReadLine.prototype = { }, insertResponse: function(response) { - if((response.length < 1) || (response=='"donotprintme"')) { + if((response.length < 1) || (response=='"donotprintme"') || (response=='donotprintme')) { this.activeLine.parent().append("

"); } else { -- 2.45.2