bf0d46
--- a/setup.py
bf0d46
+++ b/setup.py
bf0d46
@@ -14,7 +14,7 @@ class VersionFinder(ast.NodeVisitor):
bf0d46
 
bf0d46
     def visit_Assign(self, node):
bf0d46
         if node.targets[0].id == "__version__":
bf0d46
-            self.version = node.value.s
bf0d46
+            self.version = node.value.value
bf0d46
 
bf0d46
 
bf0d46
 def read(*parts):