diff options
-rw-r--r-- | README.md | 23 | ||||
-rw-r--r-- | yaksh/scripts/cli.py | 10 |
2 files changed, 8 insertions, 25 deletions
@@ -76,7 +76,7 @@ History ======= At FOSSEE, Nishanth had implemented a nice django based app to -test for multiple-choice questions. Prabhu Ramchandran was inspired by a +test for multiple-choice questions. Prabhu Ramachandran was inspired by a programming contest that he saw at PyCon APAC 2011. Chris Boesch, who administered the contest, used a nice web application [Singpath](http://singpath.com) that he had built on top of GAE that @@ -94,8 +94,7 @@ Contact For further information and support you can contact -* Forum Link -* Email Address +Python Team at FOSSEE: pythonsupport@fossee.in License ======= @@ -106,23 +105,7 @@ information is at the bottom of this file. Authors ======= -Main author: Prabhu Ramachandran - -Help from the following is gratefully acknowledged: - - - Nishanth Amuluru originally from FOSSEE who wrote bulk of the - login/registration code. He wrote an initial first cut of a quiz app - which supported only simple questions which provided motivation for - this app. The current codebase does not share too much from his - implementation although there are plenty of similarities. - - - Harish Badrinath (FOSSEE) -- who provided a first cut of the bash - related scripts. - - - Srikant Patnaik and Thomas Stephen Lee, who helped deploy and test - the code. - - - [FOSSEE Developers](http://singpath.com) + [FOSSEE Developers] (https://github.com/FOSSEE/online_test/graphs/contributors) Copyright (c) 2011 FOSSEE (fossee.in) diff --git a/yaksh/scripts/cli.py b/yaksh/scripts/cli.py index 1787fda..79523f9 100644 --- a/yaksh/scripts/cli.py +++ b/yaksh/scripts/cli.py @@ -116,11 +116,11 @@ def run_demo(project_name, top_dir): subprocess.call(command, shell=True) def run_server(): - # try: - from yaksh import code_server - code_server.main() - # except Exception as e: - print("Error: {0}\nExiting yaksh code server".format(e)) + try: + from yaksh import code_server + code_server.main() + except Exception as e: + print("Error: {0}\nExiting yaksh code server".format(e)) def _set_project_details(project_name, top_dir): file_path = path.join(SCRIPT_DIR, 'project_detail.py') |