Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaoming authored and alikins committed Apr 20, 2016
1 parent db7a884 commit dde2db5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyqver3.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def visit_ImportFrom(self, node):
if v is not None:
self.add(node, v, node.module)
for n in node.names:
name = node.module + "." + n.name
name = (node.module or "") + "." + n.name
v = Functions.get(name)
if v is not None:
self.add(node, v, name)
Expand Down

0 comments on commit dde2db5

Please sign in to comment.