Skip to content

Commit

Permalink
Remove version print
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoltan Varga committed Apr 10, 2017
1 parent 7931f35 commit 5af0e09
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion device/samples/iothub_client_sample.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ def usage():

if __name__ == '__main__':
print ( "\nPython %s" % sys.version )
print ( "IoT Hub for Python SDK Version: %s" % iothub_client.__version__ )
print ( "IoT Hub Client for Python" )

try:
(CONNECTION_STRING, PROTOCOL) = get_iothub_opt(sys.argv[1:], CONNECTION_STRING, PROTOCOL)
Expand Down
2 changes: 1 addition & 1 deletion device/samples/iothub_client_sample_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def upload_to_blob(self, destinationfilename, source, size, usercontext):
def main(connection_string, protocol):
try:
print ( "\nPython %s\n" % sys.version )
print ( "IoT Hub for Python SDK Version: %s\n" % iothub_client.__version__ )
print ( "IoT Hub Client for Python" )

hub_manager = HubManager(connection_string, protocol)

Expand Down
2 changes: 1 addition & 1 deletion service/samples/iothub_devicemethod_sample.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def usage():
if __name__ == '__main__':
print ( "" )
print ( "Python {0}".format(sys.version) )
print ( "IoT Hub Service Client for Python SDK Version: {0}".format(iothub_service_client.__version__) )
print ( "IoT Hub Service Client for Python" )
print ( "" )

try:
Expand Down
2 changes: 1 addition & 1 deletion service/samples/iothub_devicetwin_sample.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def usage():
if __name__ == '__main__':
print ( "" )
print ( "Python {0}".format(sys.version) )
print ( "IoT Hub Service Client for Python SDK Version: {0}".format(iothub_service_client.__version__) )
print ( "IoT Hub Service Client for Python" )
print ( "" )

try:
Expand Down
2 changes: 1 addition & 1 deletion service/samples/iothub_messaging_sample.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def usage():
if __name__ == '__main__':
print ( "" )
print ( "Python {0}".format(sys.version) )
print ( "IoT Hub Service Client for Python SDK Version: {0}".format(iothub_service_client.__version__) )
print ( "IoT Hub Service Client for Python" )
print ( "" )

try:
Expand Down
2 changes: 1 addition & 1 deletion service/samples/iothub_registrymanager_sample.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def usage():
if __name__ == '__main__':
print ( "" )
print ( "Python {0}".format(sys.version) )
print ( "IoT Hub Service Client for Python SDK Version: {0}".format(iothub_service_client.__version__) )
print ( "IoT Hub Service Client for Python" )
print ( "" )

try:
Expand Down

0 comments on commit 5af0e09

Please sign in to comment.