From 1942bc690f828484ec38547fd118f9bc41323b39 Mon Sep 17 00:00:00 2001
From: Andrew Lin <alin@luminoso.com>
Date: Thu, 24 Mar 2016 13:57:18 -0400
Subject: [PATCH] Restore a missing comma.

Former-commit-id: 38016cf62bb2c86472bbb7fce849dd9a1571f2ec
---
 wordfreq_builder/wordfreq_builder/cli/merge_counts.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/wordfreq_builder/wordfreq_builder/cli/merge_counts.py b/wordfreq_builder/wordfreq_builder/cli/merge_counts.py
index 4efe1d9..170b9c2 100644
--- a/wordfreq_builder/wordfreq_builder/cli/merge_counts.py
+++ b/wordfreq_builder/wordfreq_builder/cli/merge_counts.py
@@ -15,7 +15,7 @@ if __name__ == '__main__':
     parser = argparse.ArgumentParser()
     parser.add_argument('-o', '--output', default='combined-counts.csv',
                         help='filename to write the output to')
-    parser.add_argument('-c', '--cutoff', type=int, default=0
+    parser.add_argument('-c', '--cutoff', type=int, default=0,
                         help='minimum count to read from an input file')
     parser.add_argument('inputs', nargs='+',
                         help='names of input files to merge')