From 48b2cfb101961a565df1b9c9a7029a0321a10478 Mon Sep 17 00:00:00 2001 From: prasket Date: Sun, 14 Jul 2019 12:56:13 -0700 Subject: [PATCH] trying to figure out why --wow_path doesnt work --- .gitignore | 3 ++- Pipfile | 1 + Pipfile.lock | 19 +++++++++++++++++-- update.py | 2 +- 4 files changed, 21 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 5174a81..ccf699f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .vscode/ .tmp/ -elvui_update.zip \ No newline at end of file +elvui_update.zip +_retail_/ \ No newline at end of file diff --git a/Pipfile b/Pipfile index a0fb8b2..6606e6a 100644 --- a/Pipfile +++ b/Pipfile @@ -6,6 +6,7 @@ name = "pypi" [dev-packages] pylint = "*" v = {version = "*",editable = true} +autopep8 = "*" [packages] "urllib3" = "*" diff --git a/Pipfile.lock b/Pipfile.lock index 9b4225c..9bc0ce7 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "98a10a69e56c9782bcd70f13b9368ee10c5643a71d9bea63fd6a5338269e1006" + "sha256": "b028638ebf6f4793a72f7d106125cecf5554297ee700113f6c32496b4dadaa97" }, "pipfile-spec": 6, "requires": { @@ -49,6 +49,13 @@ ], "version": "==2.2.5" }, + "autopep8": { + "hashes": [ + "sha256:4d8eec30cc81bc5617dbf1218201d770dc35629363547f17577c61683ccfb3ee" + ], + "index": "pypi", + "version": "==1.4.4" + }, "isort": { "hashes": [ "sha256:54da7e92468955c4fceacd0c86bd0ec997b0e1ee80d97f67c35a78b719dccab1", @@ -86,6 +93,13 @@ ], "version": "==0.6.1" }, + "pycodestyle": { + "hashes": [ + "sha256:95a2219d12372f05704562a14ec30bc76b05a5b297b21a5dfe3f6fac3491ae56", + "sha256:e40a936c9a450ad81df37f549d676d127b1b66000a6c500caa2b085bc0ca976c" + ], + "version": "==2.5.0" + }, "pylint": { "hashes": [ "sha256:5d77031694a5fb97ea95e828c8d10fc770a1df6eb3906067aaed42201a8a6a09", @@ -132,7 +146,8 @@ }, "wrapt": { "hashes": [ - "sha256:565a021fd19419476b9362b05eeaa094178de64f8361e44468f9e9d7843901e1" + "sha256:565a021fd19419476b9362b05eeaa094178de64f8361e44468f9e9d7843901e1", + "sha256:bec3afba5ae0b57321312a6b7529672832208a0c60cc7a0310a9a2ed1c3de0ea" ], "version": "==1.11.2" } diff --git a/update.py b/update.py index 214f828..e9ab19f 100644 --- a/update.py +++ b/update.py @@ -75,7 +75,7 @@ def main(): wow_path = '/Application/World of Warcraft' # default wow install dir on MacOS. try: - opts, args = getopt.getopt(sys.argv[1:], "h:w:", ["help", "wow_path"]) + opts, args = getopt.getopt(sys.argv[1:], "hw:", ["help", "wow_path"]) except getopt.GetoptError as err: print(str(err))