MSO4SC / cloudify-hpc-plugin

Plugin to allow Cloudify to deploy and orchestrate HPC resources
Apache License 2.0
8 stars 8 forks source link

Use re module to escape chars #12 #10 #13

Closed gdolle closed 6 years ago

gdolle commented 6 years ago

More safe way to escape chars.

emepetres commented 6 years ago

Solution not valid:

emepetres commented 6 years ago

re.escape does not work because it is meant to escape regular expression pattern characters (https://docs.python.org/2/library/re.html#re.escape), which is not the case. See #12