Skip to content

Commit c00d9cd

Browse files
committed
fix rebase name conflict
1 parent b3f330b commit c00d9cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/parser/ScopeTranslator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ public T visitNonlocal_stmt(Python3Parser.Nonlocal_stmtContext ctx) {
228228
String identifier = name.getText();
229229
environment.addNonlocal(identifier);
230230
if (trackCells) {
231-
environment.registerCellVariable(identifier);
231+
environment.registerCell(identifier);
232232
}
233233
}
234234
return super.visitNonlocal_stmt(ctx);

0 commit comments

Comments
 (0)