Skip to content

Commit a0844a6

Browse files
committedDec 11, 2015
Fix stupid typo
1 parent 1d7afe5 commit a0844a6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ def get_pg_config(kind, pg_config="pg_config"):
2121
requires=[]
2222

2323
if sys.version_info[0] == 2:
24-
if sys.version.info[1] == 6:
24+
if sys.version_info[1] == 6:
2525
requires.append("ordereddict")
26-
elif sys.version.info[1] < 6:
26+
elif sys.version_info[1] < 6:
2727
sys.exit("Sorry, you need at least python 2.6 for Multicorn")
2828

2929
setup(

0 commit comments

Comments
 (0)
Please sign in to comment.