Skip to content

Commit 3b4a451

Browse files
authored
Update twine from 1.8.1 to 1.11.0 (#196)
* Update twine. * Adding missing colon for default user prompt. * Fixing version format on default prompt.
1 parent 279d254 commit 3b4a451

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

mssqlcli/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def configure_and_update_options(options):
6363

6464
if not options.integrated_auth:
6565
if not options.username:
66-
options.username = input(u'Username (press enter for sa)') or u'sa'
66+
options.username = input(u'Username (press enter for sa):') or u'sa'
6767
if not options.password:
6868
options.password = getpass.getpass()
6969

mssqlcli/mssql_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ def run(self):
367367
self.cli = self._build_cli(history)
368368

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

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ setuptools >= 36.0.1
66
requests >= 2.13.0
77
wheel >= 0.29.0
88
coverage >= 4.3.4
9-
twine >= 1.8.1
9+
twine >= 1.11.0
1010
bumpversion >= 0.5.3
1111
tox >= 2.7.0
1212
flake8 >= 3.3.0

0 commit comments

Comments
 (0)