Skip to content

Commit

Permalink
Fix IDE
Browse files Browse the repository at this point in the history
  • Loading branch information
phase committed Nov 13, 2015
1 parent 48ba9fb commit 9af24ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ide.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def link(link='code="Error in linking code"o&input='):
return render_template('link.html', link=link)

print("__name__:" + __name__)
if __name__ == '__main__':
if __name__ == 'ide':
print('Compiling O...')
check_call(['gcc', 'o.c', '-DIDE', '-o', 'o-ide', '-lm'])
print('Starting server...')
Expand Down

1 comment on commit 9af24ca

@phase
Copy link
Owner Author

@phase phase commented on 9af24ca Nov 13, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note: This did not fix the IDE whatsoever. I think it broke it more.

Please sign in to comment.