diff options
author | 2017-12-03 09:15:11 +0100 | |
---|---|---|
committer | 2017-12-03 13:16:17 +0100 | |
commit | 82faa3e5ba5a75f015ce46359241b0348b5dbdd9 (patch) | |
tree | b45c99bda520d667623f6cf1e54c49a2557b396d /dev-python/line_profiler/files/line_profiler-1.0-fix-name-from-copypasta.patch | |
parent | net-irc/iroffer-dinoex: version bump (diff) | |
download | gentoo-82faa3e5ba5a75f015ce46359241b0348b5dbdd9.tar.gz gentoo-82faa3e5ba5a75f015ce46359241b0348b5dbdd9.tar.bz2 gentoo-82faa3e5ba5a75f015ce46359241b0348b5dbdd9.zip |
dev-python/line_profiler: remove unused patches.
Closes: https://github.com/gentoo/gentoo/pull/6409
Diffstat (limited to 'dev-python/line_profiler/files/line_profiler-1.0-fix-name-from-copypasta.patch')
-rw-r--r-- | dev-python/line_profiler/files/line_profiler-1.0-fix-name-from-copypasta.patch | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/dev-python/line_profiler/files/line_profiler-1.0-fix-name-from-copypasta.patch b/dev-python/line_profiler/files/line_profiler-1.0-fix-name-from-copypasta.patch deleted file mode 100644 index e51a24f8617..00000000000 --- a/dev-python/line_profiler/files/line_profiler-1.0-fix-name-from-copypasta.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 717df8c2088087ea4bce870400a2c99b36b0e53d Mon Sep 17 00:00:00 2001 -From: Robert Kern <rkern@enthought.com> -Date: Mon, 21 Dec 2015 19:25:51 +0000 -Subject: [PATCH] BUG: fix name from copypasta. - -Fixes #43 - -Thanks, @anntzer! ---- - line_profiler.py | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/line_profiler.py b/line_profiler.py -index 4480c7b..aac01c8 100755 ---- a/line_profiler.py -+++ b/line_profiler.py -@@ -303,7 +303,7 @@ def magic_lprun(self, parameter_s=''): - mod = __import__(modname, fromlist=['']) - profile.add_module(mod) - except Exception as e: -- raise UsageError('Could not find module %r.\n%s: %s' % (name, -+ raise UsageError('Could not find module %r.\n%s: %s' % (modname, - e.__class__.__name__, e)) - - # Add the profiler to the builtins for @profile. |