From 44f788bb99fe86e003508c1a6939d22e92681bcb Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Fri, 26 Apr 2013 16:45:19 -0400 Subject: [PATCH] setup.py: Fix sdist --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b70bdece..14715d15 100755 --- a/setup.py +++ b/setup.py @@ -237,7 +237,7 @@ class my_install(install): class my_sdist(sdist): - user_options = [ + user_options = sdist.user_options + [ ("snapshot", "s", "add snapshot id to version"), ]