-#! /usr/bin/python
+#! /usr/bin/python2
"""
=head1 NAME
run_flac('wav', 'cue', '/'.join(['..', artist, outfile]), tags.all())
files = ['%s/%s.flac' % (artist, outfile)]
- c(os.unlink, 'cue')
+ try:
+ c(os.unlink, 'cue')
+ except EnvironmentError, error:
+ if error.errno != ENOENT:
+ raise error
+
outlog = '/'.join(['..', artist, outfile + '.log'])
c(os.rename, 'log', outlog)
else: