|
From: <di...@us...> - 2010-11-19 17:58:37
|
Revision: 699
http://safekeep.svn.sourceforge.net/safekeep/?rev=699&view=rev
Author: dimi
Date: 2010-11-19 17:58:31 +0000 (Fri, 19 Nov 2010)
Log Message:
-----------
A few silly typos
Modified Paths:
--------------
safekeep/trunk/safekeep
Modified: safekeep/trunk/safekeep
===================================================================
--- safekeep/trunk/safekeep 2010-11-19 17:17:37 UTC (rev 698)
+++ safekeep/trunk/safekeep 2010-11-19 17:58:31 UTC (rev 699)
@@ -105,7 +105,7 @@
log(msg, 'ERR')
def do_spawn(args, stdin=None, stdout=False):
- debug('Run [' + ' '.joint(args) + ']')
+ debug('Run [' + ' '.join(args) + ']')
_shell = isinstance(args, types.StringTypes)
if stdin:
_stdin = subprocess.PIPE
@@ -642,7 +642,7 @@
if not line: raise ConfigException('Unexpected end of file')
cfgStr += line
- do_client_config_parse(cfgStr, dflt_id)
+ return do_client_config_parse(cfgStr, dflt_id)
def do_client_config_parse(cfgStr, dflt_id=None):
dom = xml.dom.minidom.parseString(cfgStr)
@@ -814,6 +814,7 @@
send('ERROR Unknown command: %s' % line)
break
except Exception, e:
+ traceback.print_exc(file=sys.stdout)
ex = e
break
finally:
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|