Skip to content

Commit

Permalink
Fixing issue #11 reported by Heinz-Olaf (there was a namespace proble…
Browse files Browse the repository at this point in the history
…m with aux.py module => renamed to auxiliars.py). It seems this issue only was happening on Windows
  • Loading branch information
r3nt0n committed Nov 4, 2020
1 parent 32293ad commit 5689818
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions modules/args.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import os, sys, argparse

from modules.color import color
from modules.aux import is_empty, is_valid_date
from modules.auxiliars import is_empty, is_valid_date


class Arguments:
Expand Down Expand Up @@ -186,4 +186,4 @@ def set_cli_options(self):
print(' {}[!]{} {} not found'.format(color.RED, color.END, wl_path))
sys.exit(4)
if self.artists:
self.artists = self.artists.split(',')
self.artists = self.artists.split(',')
File renamed without changes.
4 changes: 2 additions & 2 deletions modules/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import sys, os, datetime

from bopscrk import name, __version__, __author__, args, Config
from modules.aux import clear
from modules.auxiliars import clear
from modules import banners
from modules.color import color
from modules.transforms import leet_transforms, case_transforms, artist_space_transforms, lyric_space_transforms, multithread_transforms, take_initials
Expand Down Expand Up @@ -183,4 +183,4 @@ def run():

except KeyboardInterrupt:
print('\n\n {}[!]{} Exiting...\n'.format(color.RED, color.END))
sys.exit(3)
sys.exit(3)

0 comments on commit 5689818

Please sign in to comment.