projects
/
rawdog
/
.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
02e9022
)
Fix some typos.
v2.12rc3
author
Adam Sampson
<ats@offog.org>
Fri, 30 Jan 2009 10:02:16 +0000
(10:02 +0000)
committer
Adam Sampson
<ats@offog.org>
Fri, 30 Jan 2009 10:02:16 +0000
(10:02 +0000)
rawdoglib/rawdog.py
patch
|
blob
|
history
diff --git
a/rawdoglib/rawdog.py
b/rawdoglib/rawdog.py
index 522644137192d413328c207254c639262efbec31..cf1a40f4ebd7a8355389cbd54da3feb21229e3f0 100644
(file)
--- a/
rawdoglib/rawdog.py
+++ b/
rawdoglib/rawdog.py
@@
-626,12
+626,12
@@
def parse_feed_args(argparams, arglines):
"""Parse a list of feed arguments. Raise ConfigError if the syntax is invalid."""
args = {}
for p in argparams:
- ps =
a
.split("=", 1)
+ ps =
p
.split("=", 1)
if len(ps) != 2:
raise ConfigError("Bad feed argument in config: " + p)
args[ps[0]] = ps[1]
for p in arglines:
- ps =
a
.split(None, 1)
+ ps =
p
.split(None, 1)
if len(ps) != 2:
raise ConfigError("Bad argument line in config: " + p)
args[ps[0]] = ps[1]