aboutsummaryrefslogtreecommitdiffstats
path: root/src/view
diff options
context:
space:
mode:
authornathansmith117 <thenathansmithsmith@gmail.com>2024-03-26 21:18:28 +0000
committernathansmith117 <thenathansmithsmith@gmail.com>2024-03-26 21:18:28 +0000
commitce899d7f51975e6ac86d9350a9e90205f21914dd (patch)
tree636ce04a4a773a488d3bdec736ae071c1f983a8f /src/view
parent4357d90862544370fcd3c70c46e131ca8c49883c (diff)
downloadyouload-ce899d7f51975e6ac86d9350a9e90205f21914dd.tar.gz
youload-ce899d7f51975e6ac86d9350a9e90205f21914dd.tar.bz2
youload-ce899d7f51975e6ac86d9350a9e90205f21914dd.zip
About to start something new
Diffstat (limited to 'src/view')
-rw-r--r--src/view/app.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/view/app.py b/src/view/app.py
index 587b9e9..4d4d400 100644
--- a/src/view/app.py
+++ b/src/view/app.py
@@ -8,6 +8,7 @@ from kivy.uix.label import Label
from kivy import platform
import threading
+import traceback
from model.youload_playlist import YouLoadPlayList
from view.file_chooser import YouloadFileChooser
@@ -135,14 +136,18 @@ class YouloadApp(App):
except FileExistsError as e:
self.download_status.text = "Folder already exists"
self.downloads_display.text = repr(e)
+ self.downloads_display.text += "\n" + traceback.format_exc()
except KeyError as e:
self.download_status.text = "Error getting playlist"
self.downloads_display.text = repr(e)
+ self.downloads_display.text += "\n" + traceback.format_exc()
except AttributeError as e:
self.download_status.text = "Download type not supported"
self.downloads_display.text = repr(e)
+ self.downloads_display.text += "\n" + traceback.format_exc()
except Exception as e:
self.downloads_display.text = repr(e)
+ self.downloads_display.text += "\n" + traceback.format_exc()
self.submit.text = "Download"
self.is_downloading = False