diff options
| author | tassaron | 2017-06-22 20:31:04 -0400 |
|---|---|---|
| committer | tassaron | 2017-06-22 20:31:04 -0400 |
| commit | 49cda1bf3aa1800459d1085496291bec90ae6a5a (patch) | |
| tree | 9c7bd4ffb01470f4c92877e22c6d039b7ddb42f1 /core.py | |
| parent | b21a953dda4ec54d494c813af8f687d53d3675d9 (diff) | |
can send multiple arguments to a component
Diffstat (limited to 'core.py')
| -rw-r--r-- | core.py | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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']): |
