##// END OF EJS Templates
bundle2: use sysstr to check for attribute presence...
marmoute -
r51786:0e936b95 default
parent child Browse files
Show More
@@ -1138,7 +1138,7 b' class bundlepart:'
1138 if not self.data:
1138 if not self.data:
1139 msg.append(b' empty payload')
1139 msg.append(b' empty payload')
1140 elif util.safehasattr(self.data, 'next') or util.safehasattr(
1140 elif util.safehasattr(self.data, 'next') or util.safehasattr(
1141 self.data, b'__next__'
1141 self.data, '__next__'
1142 ):
1142 ):
1143 msg.append(b' streamed payload')
1143 msg.append(b' streamed payload')
1144 else:
1144 else:
General Comments 0
You need to be logged in to leave comments. Login now