Skip to content

Commit 5af0e09

Browse files
author
Zoltan Varga
committed
Remove version print
1 parent 7931f35 commit 5af0e09

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

device/samples/iothub_client_sample.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ def usage():
223223

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

228228
try:
229229
(CONNECTION_STRING, PROTOCOL) = get_iothub_opt(sys.argv[1:], CONNECTION_STRING, PROTOCOL)

device/samples/iothub_client_sample_class.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def upload_to_blob(self, destinationfilename, source, size, usercontext):
163163
def main(connection_string, protocol):
164164
try:
165165
print ( "\nPython %s\n" % sys.version )
166-
print ( "IoT Hub for Python SDK Version: %s\n" % iothub_client.__version__ )
166+
print ( "IoT Hub Client for Python" )
167167

168168
hub_manager = HubManager(connection_string, protocol)
169169

service/samples/iothub_devicemethod_sample.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def usage():
5252
if __name__ == '__main__':
5353
print ( "" )
5454
print ( "Python {0}".format(sys.version) )
55-
print ( "IoT Hub Service Client for Python SDK Version: {0}".format(iothub_service_client.__version__) )
55+
print ( "IoT Hub Service Client for Python" )
5656
print ( "" )
5757

5858
try:

service/samples/iothub_devicetwin_sample.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def usage():
4747
if __name__ == '__main__':
4848
print ( "" )
4949
print ( "Python {0}".format(sys.version) )
50-
print ( "IoT Hub Service Client for Python SDK Version: {0}".format(iothub_service_client.__version__) )
50+
print ( "IoT Hub Service Client for Python" )
5151
print ( "" )
5252

5353
try:

service/samples/iothub_messaging_sample.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def usage():
102102
if __name__ == '__main__':
103103
print ( "" )
104104
print ( "Python {0}".format(sys.version) )
105-
print ( "IoT Hub Service Client for Python SDK Version: {0}".format(iothub_service_client.__version__) )
105+
print ( "IoT Hub Service Client for Python" )
106106
print ( "" )
107107

108108
try:

service/samples/iothub_registrymanager_sample.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def usage():
104104
if __name__ == '__main__':
105105
print ( "" )
106106
print ( "Python {0}".format(sys.version) )
107-
print ( "IoT Hub Service Client for Python SDK Version: {0}".format(iothub_service_client.__version__) )
107+
print ( "IoT Hub Service Client for Python" )
108108
print ( "" )
109109

110110
try:

0 commit comments

Comments
 (0)