# HG changeset patch
# User Sean Farley <
se...@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
@@ -5,11 +5,11 @@
try:
from collections import OrderedDict
extra_req = []
except ImportError:
- extra_req = 'ordereddict>=1.1'
+ extra_req = ['ordereddict>=1.1']
setup(
name='hg-git',
version='0.4.0',
author='Scott Chacon',