diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2015-09-18 17:51:45 +0000 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2015-09-18 17:51:45 +0000 |
commit | 1f3de3597ac6a60a8eddbad85ec6ef5870cd6e8e (patch) | |
tree | 8fc7832e1073ec9899c8eadd52f8c7bdb3e91da6 | |
parent | f1da32b6ab1f65d748116a188b8964ac37c0ccec (diff) | |
download | astroid-git-1f3de3597ac6a60a8eddbad85ec6ef5870cd6e8e.tar.gz |
Use the new name of the AsStringVisitor.
-rw-r--r-- | astroid/as_string.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/astroid/as_string.py b/astroid/as_string.py index 710253b9..ee1a143c 100644 --- a/astroid/as_string.py +++ b/astroid/as_string.py @@ -462,7 +462,7 @@ class AsStringVisitor3(AsStringVisitor): return "(%s)" % (expr,) def visit_asyncfunctiondef(self, node): - function = super(AsStringVisitor3k, self).visit_functiondef(node) + function = super(AsStringVisitor3, self).visit_functiondef(node) return 'async ' + function.strip() def visit_await(self, node): |