diff options
author | Joshua Harlow <harlowja@gmail.com> | 2013-07-21 09:26:44 -0700 |
---|---|---|
committer | Joshua Harlow <harlowja@gmail.com> | 2013-07-21 09:26:44 -0700 |
commit | 7022512f3ceb955be2834844f05d4683f78ff276 (patch) | |
tree | 221822e3510d36c2e1ebbab142394b5bfe241ce2 /cloudinit/handlers/shell_script.py | |
parent | 1edfb2a7a36a2bdddfe0ca48ba5d23721bf17a35 (diff) | |
download | vyos-cloud-init-7022512f3ceb955be2834844f05d4683f78ff276.tar.gz vyos-cloud-init-7022512f3ceb955be2834844f05d4683f78ff276.zip |
Use constants for repeated type strings.
Diffstat (limited to 'cloudinit/handlers/shell_script.py')
-rw-r--r-- | cloudinit/handlers/shell_script.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cloudinit/handlers/shell_script.py b/cloudinit/handlers/shell_script.py index b185c374..62289d98 100644 --- a/cloudinit/handlers/shell_script.py +++ b/cloudinit/handlers/shell_script.py @@ -29,6 +29,7 @@ from cloudinit import util from cloudinit.settings import (PER_ALWAYS) LOG = logging.getLogger(__name__) +SHELL_PREFIX = "#!" class ShellScriptPartHandler(handlers.Handler): @@ -38,7 +39,7 @@ class ShellScriptPartHandler(handlers.Handler): def list_types(self): return [ - handlers.type_from_starts_with("#!"), + handlers.type_from_starts_with(SHELL_PREFIX), ] def handle_part(self, _data, ctype, filename, # pylint: disable=W0221 |