Skip to content

Commit

Permalink
bugfix py3 & raw_input
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasLecocq committed Apr 24, 2016
1 parent 8d1088b commit 540e5cf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion msnoise/s000installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@
from .default import default
from .api import create_database_inifile


import sys
if sys.version_info[0] >= 3:
raw_input = input

def main(tech=None, hostname="localhost", username="msnoise",
password="msnoise", database="msnoise", filename="msnoise.sqlite"):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages
import versioneer

setup( version=versioneer.get_version(),
setup(version="1.4.1a",
name='msnoise',
packages=find_packages(),
include_package_data=True,
Expand Down

0 comments on commit 540e5cf

Please sign in to comment.