From beb06a4c76cb6796f22dc7adbf03b22c54b3ddd6 Mon Sep 17 00:00:00 2001 From: Dave Page Date: Tue, 16 Jul 2019 14:36:29 +0100 Subject: [PATCH] Fix typo --- web/pgadmin/setup/data_directory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/pgadmin/setup/data_directory.py b/web/pgadmin/setup/data_directory.py index f1011ab7f..38fe1a458 100644 --- a/web/pgadmin/setup/data_directory.py +++ b/web/pgadmin/setup/data_directory.py @@ -22,7 +22,7 @@ def create_app_data_directory(config): """ # Create the directory containing the configuration file (if not present). _create_directory_if_not_exists(os.path.dirname(config.SQLITE_PATH)) - # Try to set the permissions on the direectory, but don't complain + # Try to set the permissions on the directory, but don't complain # if we can't. This may be the case on a mounted directory, e.g. in # OpenShift. We'll still secure the config database anyway. if os.name != 'nt':