Skip to content

Commit

Permalink
frontend/setup.py: Fix frontend.wsgi rule
Browse files Browse the repository at this point in the history
It was wrong, my mistake, sorry.

Signed-off-by: Lucas Meneghel Rodrigues <[email protected]>
  • Loading branch information
lmr committed Oct 30, 2012
1 parent 9f81f55 commit 657abf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def get_data_files(path):
pd_filelist.extend(get_data_files(os.path.join(fe_dir, 'static')))
pd_filelist.extend(get_data_files(os.path.join(fe_dir, 'templates')))
pd_filelist.extend(get_data_files(os.path.join(fe_dir, 'tko', 'preconfigs')))
pd_filelist.extend(get_data_files(os.path.join(fe_dir, 'frontend.wsgi')))
pd_filelist.extend([os.path.join(fe_dir, 'frontend.wsgi')])

setup(name='autotest',
description='Autotest test framework - rpc server',
Expand Down

0 comments on commit 657abf0

Please sign in to comment.