Skip to content

Commit

Permalink
Naming convention fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JaySmithWpg committed Nov 12, 2014
1 parent f31ee9c commit ca40e42
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions buzz.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@

import socket, ConfigParser

Config = ConfigParser.ConfigParser()
Config.read("config.ini")
config = ConfigParser.ConfigParser()
config.read("config.ini")

HOST = Config.get("buzzer", "server_ip")
PORT = Config.getint("buzzer", "udp_port")
HOST = config.get("buzzer", "server_ip")
PORT = config.getint("buzzer", "udp_port")

s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)

Expand Down

0 comments on commit ca40e42

Please sign in to comment.