mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-03-25 12:20:32 -04: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":
|
elif operating_system == u"mac":
|
||||||
raise errors.CoCoError(u"Ruby should be installed with Mac OSX machines. Please install Ruby.")
|
raise errors.CoCoError(u"Ruby should be installed with Mac OSX machines. Please install Ruby.")
|
||||||
elif operating_system == u"linux":
|
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):
|
def install_ruby_on_windows(self):
|
||||||
raise NotImplementedError
|
raise NotImplementedError
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue