diff options
Diffstat (limited to 'lib/MooseX')
-rw-r--r-- | lib/MooseX/Net/API/Meta/Method.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/MooseX/Net/API/Meta/Method.pm b/lib/MooseX/Net/API/Meta/Method.pm index 62b4869..521a802 100644 --- a/lib/MooseX/Net/API/Meta/Method.pm +++ b/lib/MooseX/Net/API/Meta/Method.pm @@ -170,9 +170,10 @@ sub _build_path { $path =~ s/(?:\$|:)$match/$value/; } if ($max_iter > $i) { - $path =~ s/(?:\$|:)(\w+)//; + $path =~ s/(?:\/)?(?:\$|:)(\w+)$//; } } + $path =~ s/(?:\/)?(?:\$|:)(\w+)$//; return $path; } |