From 00f2d9469dfe9bce49996e55c691e2a1a23051bb Mon Sep 17 00:00:00 2001 From: William McBrine Date: Sat, 29 Dec 2007 22:35:28 -0500 Subject: [PATCH] Spelling --- beacon.py | 2 +- config.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/beacon.py b/beacon.py index 9536fc6..26f454f 100644 --- a/beacon.py +++ b/beacon.py @@ -32,7 +32,7 @@ class Beacon: return '\n'.join(beacon) def send_beacon(self): - beacon_ips = config.getBeaconAddreses() + beacon_ips = config.getBeaconAddresses() for beacon_ip in beacon_ips.split(): try: self.UDPSock.sendto(self.format_beacon(), (beacon_ip, 2190)) diff --git a/config.py b/config.py index 92dbf3a..3e415d5 100644 --- a/config.py +++ b/config.py @@ -15,7 +15,7 @@ def getGUID(): guid = '123456' return guid -def getBeaconAddreses(): +def getBeaconAddresses(): if config.has_option('Server', 'beacon'): beacon_ips = config.get('Server', 'beacon') else: -- 2.11.4.GIT