in reply to Re^2: Issue while installing my module from my local distribution.
in thread Issue while installing my module from my local distribution.

One thing i could see in my code is

sub import{ return method; #when i say this there is problem in installation. but +when i say return "method"; #installation going fine but my code is not working. }
  • Comment on Re^3: Issue while installing my module from my local distribution.
  • Download Code

Replies are listed 'Best First'.
Re^4: Issue while installing my module from my local distribution.
by Corion (Patriarch) on Sep 05, 2014 at 15:14 UTC

    Do you know what sub import is supposed to return?

    Do you know the difference between return method; and return "method"; ?

    Is sub method { ... } defined in your module?