[Clippy-commits] SF.net SVN: clippy:[6] cclippy.py
Status: Pre-Alpha
Brought to you by:
edheldil
|
From: <edh...@us...> - 2008-11-13 17:18:41
|
Revision: 6
http://clippy.svn.sourceforge.net/clippy/?rev=6&view=rev
Author: edheldil
Date: 2008-11-13 17:18:35 +0000 (Thu, 13 Nov 2008)
Log Message:
-----------
Fixed incorrect use of join()
Modified Paths:
--------------
cclippy.py
Modified: cclippy.py
===================================================================
--- cclippy.py 2008-11-13 00:23:50 UTC (rev 5)
+++ cclippy.py 2008-11-13 17:18:35 UTC (rev 6)
@@ -175,8 +175,11 @@
print param[0], ':', value
else:
key, value = arg.split (' ', 1)
- self.core.setConfig ('.'.join ('repo', repo.id, key), value)
+ self.core.setConfig ('repo.' + repo.id + '.' + key, value)
+ # FIXME: we have to reload repo now, because the config params
+ # are usually only read at class instantiation
+
# get
elif cmd == 'g':
ids = arg.split (' ')
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|