That part of the code just sets up the pipeline; it doesn't actually do any work. You may want to try modifying the code where the interactive prompts occur, in commands.py.
Adrian > On Mar 22, 2017, at 6:45 AM, Spiros C <[email protected]> wrote: > > Greetings, > I am trying to fix my first issue on beets.. I chose this one: > https://github.com/beetbox/beets/issues/2366 > I found out tha the bell sound can be generated by using this command: > print('\a') > I added this command in importer.py in line 308 like this: > if self.config['autotag']: > stages += [lookup_candidates(self), user_query(self)] > print('\a') > else: > stages += [import_asis(self)] > print('\a') > > However when I use the autotagger and I am asked to interact I hear nothing. > What have I done wrong?? > Thanks a lot, > Spiros > -- > You received this message because you are subscribed to the Google Groups > "beets" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. -- You received this message because you are subscribed to the Google Groups "beets" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
