Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu.vizoso@collabora.co.uk>2010-08-16 10:41:21 (GMT)
committer Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>2010-08-16 10:42:05 (GMT)
commit23966c81e22ff68f2204c5ced9518e9932b13b69 (patch)
treefe2978e59b9ced21c06cfe8038ad6474c39eeba0
parent3a12067efb6c5aa620fced6ba2bae6e44276f259 (diff)
Fix typo
-rw-r--r--src/jarabe/model/network.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jarabe/model/network.py b/src/jarabe/model/network.py
index 984da67..cd0d46e 100644
--- a/src/jarabe/model/network.py
+++ b/src/jarabe/model/network.py
@@ -117,7 +117,7 @@ def frequency_to_channel(frequency):
2472: 13}
if frequency not in ftoc:
logging.warning("The frequency %s can not be mapped to a channel, " \
- "defaulting to channel 1.", frequncy)
+ "defaulting to channel 1.", frequency)
return 1
return ftoc[frequency]