From 49cda1bf3aa1800459d1085496291bec90ae6a5a Mon Sep 17 00:00:00 2001 From: tassaron Date: Thu, 22 Jun 2017 20:31:04 -0400 Subject: can send multiple arguments to a component --- core.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'core.py') diff --git a/core.py b/core.py index 2177071..ba71b82 100644 --- a/core.py +++ b/core.py @@ -160,8 +160,11 @@ class Core(): ''' loader is the object calling this method which must have its own showMessage(**kwargs) method for displaying errors. ''' + if not os.path.exists(filepath): + loader.showMessage(msg='Project file not found') + return + errcode, data = self.parseAvFile(filepath) - #print(data) if errcode == 0: try: for i, tup in enumerate(data['Components']): -- cgit v1.2.3