summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid McMackins II <contact@mcmackins.org>2015-07-29 08:32:31 -0500
committerDavid McMackins II <contact@mcmackins.org>2015-07-29 08:32:31 -0500
commitfd85906fee9dc819d213e417c83285989257aa3f (patch)
tree59eae81ab1a76277986b2d4d3411168a0204c73d
parent6d63fc0061d295c39038b23c302cccc96c7563bf (diff)
Change manifest string assignment to use double quotes for code consistencyHEADmaster
-rw-r--r--jarsnap.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/jarsnap.py b/jarsnap.py
index d1d0104..745df17 100644
--- a/jarsnap.py
+++ b/jarsnap.py
@@ -37,11 +37,11 @@ def make_fat_jar(jars, main_class, output_path='fat.jar', data=[]):
meta_inf = join(workdir, 'META-INF')
mkdir(meta_inf)
- manifest = '''Manifest-Version: 1.0
+ manifest = """Manifest-Version: 1.0
Created-By: {} {} on {}
Main-Class: {}
-'''.replace('\n', '\r\n').format(__title__, __version__, now, main_class)
+""".replace('\n', '\r\n').format(__title__, __version__, now, main_class)
try:
for jar in jars: