From 73b1a2c6fd4e9aa937006621f9f2e75c4ef8b182 Mon Sep 17 00:00:00 2001 From: David Lynch Date: Wed, 28 Oct 2015 03:18:17 -0500 Subject: [PATCH] Error handling: was bad --- sites/spacebattles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sites/spacebattles.py b/sites/spacebattles.py index 4edd1c7..de98f53 100644 --- a/sites/spacebattles.py +++ b/sites/spacebattles.py @@ -40,7 +40,7 @@ class SpaceBattles(Site): try: return self._chapter_list_threadmarks(url) except SiteException as e: - print("Tried threadmarks", e.msg) + print("Tried threadmarks", e.args) return self._chapter_list_index(url) def _chapter_list_threadmarks(self, url):