* [PATCH][fido] wic: fix path parsing, use last occurrence
@ 2015-09-10 17:30 George McCollister
2015-09-14 8:19 ` Ed Bartosh
2015-09-15 16:02 ` Joshua Lock
0 siblings, 2 replies; 3+ messages in thread
From: George McCollister @ 2015-09-10 17:30 UTC (permalink / raw)
To: openembedded-core
If the path contains 'scripts' more than once the first occurrence will be
incorrectly used. Use rfind instead of find to find the last occurrence.
Signed-off-by: George McCollister <george.mccollister@gmail.com>
---
scripts/lib/wic/plugin.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/lib/wic/plugin.py b/scripts/lib/wic/plugin.py
index 41a8017..3acd5b4 100644
--- a/scripts/lib/wic/plugin.py
+++ b/scripts/lib/wic/plugin.py
@@ -42,7 +42,7 @@ class PluginMgr(object):
def __init__(self):
wic_path = os.path.dirname(__file__)
- eos = wic_path.find('scripts') + len('scripts')
+ eos = wic_path.rfind('scripts') + len('scripts')
scripts_path = wic_path[:eos]
self.scripts_path = scripts_path
self.plugin_dir = scripts_path + PLUGIN_DIR
--
2.4.5
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH][fido] wic: fix path parsing, use last occurrence
2015-09-10 17:30 [PATCH][fido] wic: fix path parsing, use last occurrence George McCollister
@ 2015-09-14 8:19 ` Ed Bartosh
2015-09-15 16:02 ` Joshua Lock
1 sibling, 0 replies; 3+ messages in thread
From: Ed Bartosh @ 2015-09-14 8:19 UTC (permalink / raw)
To: George McCollister; +Cc: openembedded-core
Hi George,
Thank you for the fix!
Acked-by: Ed Bartosh <ed.bartosh@linux.intel.com>
On Thu, Sep 10, 2015 at 12:30:52PM -0500, George McCollister wrote:
> If the path contains 'scripts' more than once the first occurrence will be
> incorrectly used. Use rfind instead of find to find the last occurrence.
>
> Signed-off-by: George McCollister <george.mccollister@gmail.com>
> ---
> scripts/lib/wic/plugin.py | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/scripts/lib/wic/plugin.py b/scripts/lib/wic/plugin.py
> index 41a8017..3acd5b4 100644
> --- a/scripts/lib/wic/plugin.py
> +++ b/scripts/lib/wic/plugin.py
> @@ -42,7 +42,7 @@ class PluginMgr(object):
>
> def __init__(self):
> wic_path = os.path.dirname(__file__)
> - eos = wic_path.find('scripts') + len('scripts')
> + eos = wic_path.rfind('scripts') + len('scripts')
> scripts_path = wic_path[:eos]
> self.scripts_path = scripts_path
> self.plugin_dir = scripts_path + PLUGIN_DIR
> --
> 2.4.5
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
--
--
Regards,
Ed
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH][fido] wic: fix path parsing, use last occurrence
2015-09-10 17:30 [PATCH][fido] wic: fix path parsing, use last occurrence George McCollister
2015-09-14 8:19 ` Ed Bartosh
@ 2015-09-15 16:02 ` Joshua Lock
1 sibling, 0 replies; 3+ messages in thread
From: Joshua Lock @ 2015-09-15 16:02 UTC (permalink / raw)
To: openembedded-core
On Thu, 2015-09-10 at 12:30 -0500, George McCollister wrote:
> If the path contains 'scripts' more than once the first occurrence
> will be
> incorrectly used. Use rfind instead of find to find the last
> occurrence.
>
> Signed-off-by: George McCollister <george.mccollister@gmail.com>
Patch queued in my joshuagl/fido-next tree - thanks!
Joshua
http://cgit.openembedded.org/openembedded-core-contrib/log/?h=joshuagl/
fido-next
> ---
> scripts/lib/wic/plugin.py | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/scripts/lib/wic/plugin.py b/scripts/lib/wic/plugin.py
> index 41a8017..3acd5b4 100644
> --- a/scripts/lib/wic/plugin.py
> +++ b/scripts/lib/wic/plugin.py
> @@ -42,7 +42,7 @@ class PluginMgr(object):
>
> def __init__(self):
> wic_path = os.path.dirname(__file__)
> - eos = wic_path.find('scripts') + len('scripts')
> + eos = wic_path.rfind('scripts') + len('scripts')
> scripts_path = wic_path[:eos]
> self.scripts_path = scripts_path
> self.plugin_dir = scripts_path + PLUGIN_DIR
> --
> 2.4.5
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-09-15 16:02 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-10 17:30 [PATCH][fido] wic: fix path parsing, use last occurrence George McCollister
2015-09-14 8:19 ` Ed Bartosh
2015-09-15 16:02 ` Joshua Lock
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox