You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2011/03/16 19:25:22 UTC

svn commit: r1082245 - /incubator/libcloud/trunk/test/test_utils.py

Author: tomaz
Date: Wed Mar 16 18:25:22 2011
New Revision: 1082245

URL: http://svn.apache.org/viewvc?rev=1082245&view=rev
Log:
Add required line arg.

Modified:
    incubator/libcloud/trunk/test/test_utils.py

Modified: incubator/libcloud/trunk/test/test_utils.py
URL: http://svn.apache.org/viewvc/incubator/libcloud/trunk/test/test_utils.py?rev=1082245&r1=1082244&r2=1082245&view=diff
==============================================================================
--- incubator/libcloud/trunk/test/test_utils.py (original)
+++ incubator/libcloud/trunk/test/test_utils.py Wed Mar 16 18:25:22 2011
@@ -23,7 +23,7 @@ import libcloud.utils
 
 WARNINGS_BUFFER = []
 
-def show_warning(msg, cat, fname, lno):
+def show_warning(msg, cat, fname, lno, line=None):
     WARNINGS_BUFFER.append((msg, cat, fname, lno))
 
 original_func = warnings.showwarning