diff options
author | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2014-12-24 19:06:06 -0200 |
---|---|---|
committer | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2014-12-24 19:06:06 -0200 |
commit | 76e06d3e62547b1f0bcebf2bd30d234aa6ee49cc (patch) | |
tree | 922d0e5c8d30a238f8ebbff6ceed6de68134f073 /pcr/spyder/pylint.patch | |
parent | 9935897983aa8b3b6b3e59951bcd19663842d2dc (diff) | |
parent | a2fdccac85fa2126556b6dd0a052a9ddb9cb93ee (diff) |
Merge branch 'master' of ssh://projects.parabola.nu:1863/~git/abslibre/abslibre
Diffstat (limited to 'pcr/spyder/pylint.patch')
-rw-r--r-- | pcr/spyder/pylint.patch | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/pcr/spyder/pylint.patch b/pcr/spyder/pylint.patch deleted file mode 100644 index faa1edcf1..000000000 --- a/pcr/spyder/pylint.patch +++ /dev/null @@ -1,28 +0,0 @@ -diff -Naur spyder-2.2.5/spyderplugins/widgets/pylintgui.py spyder-2.2.5-patched/spyderplugins/widgets/pylintgui.py ---- spyder-2.2.5/spyderplugins/widgets/pylintgui.py 2013-10-12 20:35:52.000000000 +0200 -+++ spyder-2.2.5-patched/spyderplugins/widgets/pylintgui.py 2013-11-12 00:42:22.809509805 +0100 -@@ -40,7 +40,7 @@ - _ = get_translation("p_pylint", dirname="spyderplugins")
-
-
--PYLINT_PATH = programs.find_program('pylint')
-+PYLINT_PATH = programs.find_program('pylint2')
-
-
- def get_pylint_version():
-@@ -48,13 +48,13 @@ - global PYLINT_PATH
- if PYLINT_PATH is None:
- return
-- process = subprocess.Popen(['pylint', '--version'],
-+ process = subprocess.Popen(['pylint2', '--version'],
- stdout=subprocess.PIPE, stderr=subprocess.PIPE,
- cwd=osp.dirname(PYLINT_PATH),
- shell=True if os.name == 'nt' else False)
- lines = to_unicode_from_fs(process.stdout.read()).splitlines()
- if lines:
-- match = re.match('(pylint|pylint-script.py) ([0-9\.]*)', lines[0])
-+ match = re.match('(pylint2|pylint-script.py) ([0-9\.]*)', lines[0])
- if match is not None:
- return match.groups()[1]
-
|