1
0
forked from VimPlug/jedi

ignore multiple param names

This commit is contained in:
David Halter
2012-10-10 23:17:58 +02:00
parent b204f2f5d9
commit 9cb9e53922
2 changed files with 14 additions and 3 deletions
+1 -1
View File
@@ -835,7 +835,7 @@ class Param(Statement):
""" get the name of the param """
n = self.set_vars or self.used_vars
if len(n) > 1:
raise IndexError("Multiple param names (%s)." % n)
debug.warning("Multiple param names (%s)." % n)
return n[0]