diff options
author | OpenGnSys Support Team <soporte-og@soleta.eu> | 2020-02-21 11:51:43 +0100 |
---|---|---|
committer | Alvaro Neira Ayuso <aneira@soleta.eu> | 2020-02-21 12:57:54 +0100 |
commit | 3917c3675f109a3330120fda403d5562ebf9e3fa (patch) | |
tree | fc7921721ebc5fb66741d29351ae7b540ebba9bb /main.py | |
parent | 54c0ebf0983d6144c6cb7597290beb1e8bb39e7b (diff) |
pep-0008 cleanup
From pep-0008: Method Names and Instance Variables
Use the function naming rules: lowercase with words separated by underscores as
necessary to improve readability.
Diffstat (limited to 'main.py')
-rw-r--r-- | main.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -13,12 +13,12 @@ from signal import signal, SIGPIPE, SIG_DFL def main(): signal(SIGPIPE, SIG_DFL) ogconfig = ogConfig() - if (not ogconfig.parserFile('cfg/ogagent.cfg')): + if (not ogconfig.parser_file('cfg/ogagent.cfg')): print ('Error: Parsing configuration file') return 0 - ip = ogconfig.getValueSection('opengnsys', 'ip') - port = ogconfig.getValueSection('opengnsys', 'port') + ip = ogconfig.get_value_section('opengnsys', 'ip') + port = ogconfig.get_value_section('opengnsys', 'port') client = ogClient(ip, int(port)) client.connect() |