From bcbf659a8a9b7b4b4edd5f1d0abcc2ddce33c371 Mon Sep 17 00:00:00 2001 From: brent s Date: Thu, 15 Aug 2019 04:17:54 -0400 Subject: [PATCH] why was i trying to import pymysql? --- backup.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/backup.py b/backup.py index ea7a5fb..5a68bb5 100755 --- a/backup.py +++ b/backup.py @@ -22,11 +22,6 @@ import sys import tempfile # TODO: virtual env? from lxml import etree # A lot safer and easier to use than the stdlib xml module. -try: - import pymysql # not stdlib; "python-pymysql" in Arch's AUR - has_mysql = True -except ImportError: - has_mysql = False try: # https://www.freedesktop.org/software/systemd/python-systemd/journal.html#journalhandler-class from systemd import journal