diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2020-09-22 17:17:05 +0530 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2020-09-22 17:17:05 +0530 |
commit | 9abf07a53ac57f6c93132822376e6ff0058f0ad5 (patch) | |
tree | 767af0e2e6e053683d15c369b877e60e5193f559 /app/dock-single.py | |
parent | 726ef5b50a90a08ddb1fddd3d0fa8775e21b1c35 (diff) |
added try except incase collada2gltf is not there
Diffstat (limited to 'app/dock-single.py')
-rw-r--r-- | app/dock-single.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/app/dock-single.py b/app/dock-single.py index 3526985..90031a1 100644 --- a/app/dock-single.py +++ b/app/dock-single.py @@ -221,7 +221,6 @@ def RemoveAllFilesMatching(directory,pattern): FileList = glob.glob(directory+"/*"+pattern) for FilePath in FileList: try: - print(FilePath) os.remove(FilePath) except: print("Error in removing misc file") |