From 1f7d18a56283edf84c20418be67545b7827cec36 Mon Sep 17 00:00:00 2001 From: Patrick Marsee Date: Mon, 18 Feb 2019 12:47:32 -0500 Subject: [PATCH] Fixed setClearColor crashes --- shell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.py b/shell.py index 2f893c5..8a683da 100644 --- a/shell.py +++ b/shell.py @@ -119,7 +119,7 @@ class Shell(object): return ret def setClearColor(self): - print(clearColor()) + print(self.clearColor()) return def run(self):