Skip to content
This repository has been archived by the owner on Jan 8, 2024. It is now read-only.

Commit

Permalink
fixing bug
Browse files Browse the repository at this point in the history
  • Loading branch information
luissian committed Jun 19, 2019
1 parent fb3199a commit f8b7235
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions views.py
Original file line number Diff line number Diff line change
Expand Up @@ -2923,9 +2923,9 @@ def configuration_test (request):
return redirect ('/accounts/login')
if request.method=='POST' and request.POST['action'] == 'basicTest':
test_results = {}
wetlab_config = os.path.join(settings.BASE_DIR, 'iSkyLIMS_wetlab', 'wetlab_config.py')
wetlab_config_file = os.path.join(settings.BASE_DIR, 'iSkyLIMS_wetlab', 'wetlab_config.py')
test_results['iSkyLIMS_settings'] = get_iSkyLIMS_settings()
test_results['config_file'] = get_config_file(wetlab_config)
test_results['config_file'] = get_config_file(wetlab_config_file)
test_results['attr_files'] = get_files_attribute(os.path.join(settings.MEDIA_ROOT, 'wetlab'))
test_results['database_access'] = check_access_database()
test_results['samba_connection'] = check_samba_connection()
Expand Down

0 comments on commit f8b7235

Please sign in to comment.