4,7 → 4,7 |
from optparse import OptionParser |
|
### DEFAULT CONFIGURATION VARIABLES ### |
DICT_FILE = os.path.expanduser('~/bin/animesorter.dict') |
DICT_FILE = os.path.expanduser('~/.config/animesorter/animesorter.dict') |
WORK_DIR = os.path.expanduser('~/downloads/usenet') |
SORT_DIR = os.path.expanduser('/data/Anime') |
|
132,8 → 132,7 |
|
return options |
|
### MAIN IS HERE ### |
if( __name__ == '__main__' ): |
def main(): |
|
## Get Options |
options = get_parsed_options() |
168,3 → 167,8 |
|
## print status |
print_move_status() |
|
### MAIN IS HERE ### |
if __name__ == '__main__': |
main() |
|