Skip to content

Commit 0711a41

Browse files
Fix mssqlinstance.py forgot print notfound (#1929)
1 parent 5a402fc commit 0711a41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/mssqlinstance.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
ms_sql = tds.MSSQL(options.host)
4949
instances = ms_sql.getInstances(int(options.timeout))
5050
if len(instances) == 0:
51-
"No MSSQL Instances found"
51+
print("No MSSQL Instances found")
5252
else:
5353
for i, instance in enumerate(instances):
5454
logging.info("Instance %d" % i)

0 commit comments

Comments
 (0)