Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update twine from 1.8.1 to 1.11.0 #196

Merged
merged 3 commits into from
May 8, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mssqlcli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def configure_and_update_options(options):

if not options.integrated_auth:
if not options.username:
options.username = input(u'Username (press enter for sa)') or u'sa'
options.username = input(u'Username (press enter for sa):') or u'sa'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR of the month right here! This has bugged me for so long :)

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My mistake is finally corrected

if not options.password:
options.password = getpass.getpass()

Expand Down
2 changes: 1 addition & 1 deletion mssqlcli/mssql_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ def run(self):
self.cli = self._build_cli(history)

if not self.less_chatty:
print('Version:', __version__)
print('Version: {}'.format(__version__))
print('Mail: [email protected]')
print('Home: http://github.com/dbcli/mssql-cli')

Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ setuptools >= 36.0.1
requests >= 2.13.0
wheel >= 0.29.0
coverage >= 4.3.4
twine >= 1.8.1
twine >= 1.11.0
bumpversion >= 0.5.3
tox >= 2.7.0
flake8 >= 3.3.0
Expand Down