Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRohde Fischer <rohdef@rohdef.dk>2011-11-25 21:03:16 +0400
committerAlan McGovern <alan.mcgovern@gmail.com>2011-11-29 15:13:31 +0400
commitc22099de8965697c4b2d44425a1d2b25a90249aa (patch)
treea162fd8415c1a71b1f9d0d5df5e4940ced23c625 /extras/PyBinding
parentda56f489689de029c3682959ac60f936a037bbdf (diff)
Fixed bug causing python exception:
for unknow reasons it says: "unexpeted keyword argument", even though the keyword is documented. Keyword argument though is redundant.
Diffstat (limited to 'extras/PyBinding')
-rwxr-xr-xextras/PyBinding/PyBinding/Resources/completion.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/PyBinding/PyBinding/Resources/completion.py b/extras/PyBinding/PyBinding/Resources/completion.py
index 4ca99755a6..3faaffe84b 100755
--- a/extras/PyBinding/PyBinding/Resources/completion.py
+++ b/extras/PyBinding/PyBinding/Resources/completion.py
@@ -265,7 +265,7 @@ def parse(content, outStream):
except ImportError:
pass
- visitor.tree.write(file = outStream)
+ visitor.tree.write(outStream)
except SyntaxError, ex:
lineno = hasattr(ex, 'lineno') and ex.lineno or 0
offset = hasattr(ex, 'offset') and ex.offset or 0