chiark
/
gitweb
/
~mdw
/
disorder
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2fbc0bd
)
Python: don't supply a value when unsetting a global pref.
author
Richard Kettlewell
<rjk@terraraq.org.uk>
Mon, 1 Aug 2011 19:35:26 +0000
(20:35 +0100)
committer
Richard Kettlewell
<rjk@terraraq.org.uk>
Mon, 1 Aug 2011 19:35:26 +0000
(20:35 +0100)
python/disorder.py.in
patch
|
blob
|
blame
|
history
diff --git
a/python/disorder.py.in
b/python/disorder.py.in
index fe054a9474aec4ef684cfec3e8efff3b30835a45..8584c8598327de17307e8a449853a9ea16283ce0 100644
(file)
--- a/
python/disorder.py.in
+++ b/
python/disorder.py.in
@@
-623,7
+623,7
@@
class client:
track -- the track to modify
key -- the preference to remove
"""
- self._simple("set", track, key
, value
)
+ self._simple("set", track, key)
def get(self, track, key):
"""Get a preference value.
@@
-843,7
+843,7
@@
class client:
Arguments:
key -- the preference to remove
"""
- self._simple("set-global", key
, value
)
+ self._simple("set-global", key)
def getglobal(self, key):
"""Get a global preference value.