From ce10d4f5e026ffd513897fe1e8aae3cee8bac819 Mon Sep 17 00:00:00 2001 From: Tommi Virtanen Date: Tue, 7 Jun 2011 12:58:48 -0700 Subject: [PATCH] Add missing trailing commas. 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 | 2 +- teuthology/task/ceph.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 8421bdeac77..277feb9f3f9 100644 --- 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={ diff --git a/teuthology/task/ceph.py b/teuthology/task/ceph.py index ef64573b9b7..e5676a27a48 100644 --- a/teuthology/task/ceph.py +++ b/teuthology/task/ceph.py @@ -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, -- 2.47.3