]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
Add missing trailing commas.
authorTommi Virtanen <tommi.virtanen@dreamhost.com>
Tue, 7 Jun 2011 19:58:48 +0000 (12:58 -0700)
committerTommi Virtanen <tommi.virtanen@dreamhost.com>
Tue, 7 Jun 2011 19:58:48 +0000 (12:58 -0700)
Lists of strings where last item has no comma are just
traps waiting to hurt you when you add a new item at
the end.

setup.py
teuthology/task/ceph.py

index 8421bdeac7727cf3280300c331a9f26528a0528b..277feb9f3f94d3c5512b1b678e41a0117c377755 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -17,7 +17,7 @@ setup(
         'configobj',
         'PyYAML',
         'bunch >=1.0.0',
-        'argparse >=1.2.1'
+        'argparse >=1.2.1',
         ],
 
     entry_points={
index ef64573b9b783dacee7cec157faa4a9526e3a1ea..e5676a27a48a37d79b9d3218165864abfc05b94c 100644 (file)
@@ -358,7 +358,7 @@ def task(ctx, config):
                     '/tmp/cephtest/binary/usr/local/bin/cosd',
                     '--mkfs',
                     '-i', id_,
-                    '-c', '/tmp/cephtest/ceph.conf'
+                    '-c', '/tmp/cephtest/ceph.conf',
                     ],
                 )
 
@@ -372,7 +372,7 @@ def task(ctx, config):
                     '/tmp/cephtest/binary/usr/local/bin/cosd',
                     '-f',
                     '-i', id_,
-                    '-c', '/tmp/cephtest/ceph.conf'
+                    '-c', '/tmp/cephtest/ceph.conf',
                     ],
                 logger=log.getChild('osd.{id}'.format(id=id_)),
                 stdin=run.PIPE,
@@ -390,7 +390,7 @@ def task(ctx, config):
                     '/tmp/cephtest/binary/usr/local/bin/cmds',
                     '-f',
                     '-i', id_,
-                    '-c', '/tmp/cephtest/ceph.conf'
+                    '-c', '/tmp/cephtest/ceph.conf',
                     ],
                 logger=log.getChild('mds.{id}'.format(id=id_)),
                 stdin=run.PIPE,