소스 검색

cli.py: replace deprecated SafeConfigParser() with ConfigParser()

- GH #23
Daniel-Constantin Mierla 1 년 전
부모
커밋
0b5404a7a1
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      kamcli/cli.py

+ 1 - 1
kamcli/cli.py

@@ -19,7 +19,7 @@ COMMAND_ALIASES = {
 
 def read_global_config(config_paths):
     """Get config."""
-    parser = configparser.SafeConfigParser()
+    parser = configparser.ConfigParser()
     if config_paths:
         parser.read(config_paths)
     else: