diff pyloader/cast.py @ 71:2261cf505daf

interpolate "inline" wrapper arguments
author Jeff Hammel <jhammel@mozilla.com>
date Thu, 09 Jun 2011 18:03:16 -0700
parents 886009132409
children efb7a8a189e8
line wrap: on
line diff
--- a/pyloader/cast.py	Thu Jun 09 17:57:12 2011 -0700
+++ b/pyloader/cast.py	Thu Jun 09 18:03:16 2011 -0700
@@ -29,7 +29,7 @@
   string = string.rstrip(separator)
   return [i.strip() for i in string.split(separator)]
 
-def str2args(string, separator=None):
+def str2args(string, separator=','):
   args = str2list(string, separator)
   _args = []
   kw = {}