# HG changeset patch
# User Sean Farley <sean@mcs.anl.gov>
# Date 1347824778 18000
# Node ID 3b82cf6ac73ad8455a632516735070610eb5cd32
# Parent  878ae1d1bd73f5e079f6990b4a93e9a9f5405fb8
setup: fix typo forgetting brackets introduced in 5c1d4311440d

diff --git a/setup.py b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -7,7 +7,7 @@
     from collections import OrderedDict
     extra_req = []
 except ImportError:
-    extra_req = 'ordereddict>=1.1'
+    extra_req = ['ordereddict>=1.1']
 
 setup(
     name='hg-git',