Skip to content
Snippets Groups Projects
Commit 246d7651103c authored by Vincent Hatakeyama's avatar Vincent Hatakeyama
Browse files

[order hgconf] added todo to stop if there is a comment in file

parent 77e4a17a8f68
No related branches found
No related tags found
No related merge requests found
...@@ -127,6 +127,9 @@ ...@@ -127,6 +127,9 @@
hgconf = configparser.ConfigParser() hgconf = configparser.ConfigParser()
hgconf.read(args.hgconf) hgconf.read(args.hgconf)
logging.debug(hgconf.sections()) logging.debug(hgconf.sections())
# Stop if there is comment (they will be deleted)
# TODO
# Stop if there is any unknown module # Stop if there is any unknown module
module_difference = set(hgconf.sections()) - set(MASTER_MODULE_LIST) module_difference = set(hgconf.sections()) - set(MASTER_MODULE_LIST)
if module_difference: if module_difference:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment