From: Apprentice Harper Date: Sun, 29 Nov 2020 10:47:09 +0000 (+0000) Subject: Merge branch 'Python2' - the DeDRM plugn version change X-Git-Url: http://git.xmof.duckdns.org/?a=commitdiff_plain;h=ccfa45422641aad5e2509db96aca5b13c20ac988;p=DeDRM.git Merge branch 'Python2' - the DeDRM plugn version change --- ccfa45422641aad5e2509db96aca5b13c20ac988 diff --cc DeDRM_plugin/__init__.py index cdbd4a9,cfd91b2..b27fde9 --- a/DeDRM_plugin/__init__.py +++ b/DeDRM_plugin/__init__.py @@@ -76,9 -77,9 +76,9 @@@ __docformat__ = 'restructuredtext en Decrypt DRMed ebooks. """ -PLUGIN_NAME = u"DeDRM" +PLUGIN_NAME = "DeDRM" - PLUGIN_VERSION_TUPLE = (7, 0, 0) + PLUGIN_VERSION_TUPLE = tuple([int(x) for x in __version__.split(".")]) -PLUGIN_VERSION = u".".join([unicode(str(x)) for x in PLUGIN_VERSION_TUPLE]) +PLUGIN_VERSION = ".".join([str(x)for x in PLUGIN_VERSION_TUPLE]) # Include an html helpfile in the plugin's zipfile with the following name. RESOURCE_NAME = PLUGIN_NAME + '_Help.htm'