[asterisk-commits] pabelanger: branch pabelanger/dynamic-modules r294 - /asterisk/team/pabelange...
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed May 12 15:46:28 CDT 2010
Author: pabelanger
Date: Wed May 12 15:46:24 2010
New Revision: 294
URL: http://svnview.digium.com/svn/testsuite?view=rev&rev=294
Log:
Fixed typo
Modified:
asterisk/team/pabelanger/dynamic-modules/lib/python/asterisk/asterisk.py
Modified: asterisk/team/pabelanger/dynamic-modules/lib/python/asterisk/asterisk.py
URL: http://svnview.digium.com/svn/testsuite/asterisk/team/pabelanger/dynamic-modules/lib/python/asterisk/asterisk.py?view=diff&rev=294&r1=293&r2=294
==============================================================================
--- asterisk/team/pabelanger/dynamic-modules/lib/python/asterisk/asterisk.py (original)
+++ asterisk/team/pabelanger/dynamic-modules/lib/python/asterisk/asterisk.py Wed May 12 15:46:24 2010
@@ -168,7 +168,7 @@
]
print "Executing %s ..." % cmd
process = subprocess.Popen(cmd, stdout=subprocess.PIPE)
- output = process.p.communicate()[0].rstrip()
+ output = process.communicate()[0].rstrip()
process.wait()
return output
More information about the asterisk-commits
mailing list