[asterisk-scf-commits] asterisk-scf/integration/testsuite.git branch "review" updated.

Commits to the Asterisk SCF project code repositories asterisk-scf-commits at lists.digium.com
Mon May 23 15:47:33 CDT 2011


branch "review" has been updated
       via  53939b17f95c4f42353ace7bdfead43c7be0e31e (commit)
      from  087a974c411d3a71e8d8c43b44362bdf557b9018 (commit)

Summary of changes:
 remote.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


- Log -----------------------------------------------------------------
commit 53939b17f95c4f42353ace7bdfead43c7be0e31e
Author: Darren Sessions <dsessions at digium.com>
Date:   Mon May 23 15:47:31 2011 -0500

    syntax error fixes in remote.py

diff --git a/remote.py b/remote.py
index 785dd76..42c2847 100755
--- a/remote.py
+++ b/remote.py
@@ -142,9 +142,9 @@ class RemoteManagement(object):
 
     def changeDir(self, dir):
         if not os.path.exists('%s/tmp/%s' % (cwd, dir)):
-            return {'success':False,'msg':'The %s path does not exist.'}
+            return {'success':False,'msg':'The %s path does not exist.' % dir}
         os.chdir('%s/tmp/%s' % (cwd, dir))
-        return {'success'}
+        return {'success':True}
 
     def writeFile(self, fn, fd):
         if not os.path.exists('%s/tmp' % cwd):

-----------------------------------------------------------------------


-- 
asterisk-scf/integration/testsuite.git



More information about the asterisk-scf-commits mailing list