mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-23 23:58:02 -05:00
Fix error "SyntaxError: EOL while scanning string literal" when running setup.py script
This commit is contained in:
parent
b0403cf1cd
commit
08d7d2cc87
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ class Ruby(dependency.Dependency):
|
|||
elif operating_system == u"mac":
|
||||
raise errors.CoCoError(u"Ruby should be installed with Mac OSX machines. Please install Ruby.")
|
||||
elif operating_system == u"linux":
|
||||
raise errors.CoCoError(u"Please install Ruby (try 'sudo apt-get install ruby').\nIf you are not using Ubuntu then please see your Linux Distribution's documentation for help installing ruby."")
|
||||
raise errors.CoCoError(u"Please install Ruby (try 'sudo apt-get install ruby').\nIf you are not using Ubuntu then please see your Linux Distribution's documentation for help installing ruby.")
|
||||
def install_ruby_on_windows(self):
|
||||
raise NotImplementedError
|
||||
|
||||
|
|
Loading…
Reference in a new issue