Commit 7cc8fea0 authored by Cristiano Urban's avatar Cristiano Urban
Browse files

Renamed method to set the 'async_trans' flag.

parent f1402a92
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@ class Node(object):
        self.type = type
        self.locationId = None
        self.format = None
        self.transferType = None
        self.asyncTrans = None
        self.sticky = None
        self.busyState = None
        self.ownerID = None
@@ -65,8 +65,7 @@ class Node(object):
    def setFormat(self, format):
        self.format = format

    # 'asyncTrans' flag
    def setTransferType(self, transferType):
    def setAsyncTrans(self, transferType):
        self.transferType = transferType
        
    def setSticky(self, sticky):