diff options
author | Filipp Lepalaan <filipp@mac.com> | 2014-05-13 22:05:47 +0300 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2014-05-13 22:05:47 +0300 |
commit | ec6e5b9bda22af2040a7b5f903d32abfa942627f (patch) | |
tree | d0c896a74d4031c96abe2d669a50cd9ac0129e12 | |
parent | 269216c477a8506c529fa83665ec3405fcbaeda7 (diff) | |
download | py-gsxws-ec6e5b9bda22af2040a7b5f903d32abfa942627f.tar.gz py-gsxws-ec6e5b9bda22af2040a7b5f903d32abfa942627f.tar.bz2 py-gsxws-ec6e5b9bda22af2040a7b5f903d32abfa942627f.zip |
Product diags SN attribute fix
-rw-r--r-- | gsxws/products.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gsxws/products.py b/gsxws/products.py index 6be6ace..a66e251 100644 --- a/gsxws/products.py +++ b/gsxws/products.py @@ -113,7 +113,7 @@ class Product(object): """ >>> Product('DGKFL06JDHJP').diagnostics() """ - diags = Diagnostics(serialNumber=self.sn) + diags = Diagnostics(serialNumber=self.serialNumber) if hasattr(self, "alternateDeviceId"): diags = Diagnostics(alternateDeviceId=self.alternateDeviceId) |