From 41b697e7f9e6d7411f1580d9edb1b716d6788c23 Mon Sep 17 00:00:00 2001 From: Joakim Soderlund Date: Sat, 30 Nov 2019 12:30:07 +0100 Subject: [PATCH] Remove date parser warning suppression --- fimfarchive/__main__.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/fimfarchive/__main__.py b/fimfarchive/__main__.py index a86f3e8..8712502 100644 --- a/fimfarchive/__main__.py +++ b/fimfarchive/__main__.py @@ -5,7 +5,7 @@ Main module script. # # Fimfarchive, preserves stories from Fimfiction. -# Copyright (C) 2015 Joakim Soderlund +# Copyright (C) 2019 Joakim Soderlund # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -23,16 +23,11 @@ Main module script. import sys -import warnings - -from arrow.factory import ArrowParseWarning from fimfarchive.commands import RootCommand if __name__ == '__main__': - warnings.simplefilter('ignore', ArrowParseWarning) - cmd = RootCommand() code = cmd(*sys.argv[1:]) exit(code=code)