##// END OF EJS Templates
httprepo: remove is-comparison with string literal...
Dan Villiom Podlaski Christiansen -
r13006:ea68947a stable
parent child Browse files
Show More
@@ -68,7 +68,7 b' class httprepository(wireproto.wirerepos'
68 raise util.Abort(_('operation not supported over http'))
68 raise util.Abort(_('operation not supported over http'))
69
69
70 def _callstream(self, cmd, **args):
70 def _callstream(self, cmd, **args):
71 if cmd is 'pushkey':
71 if cmd == 'pushkey':
72 args['data'] = ''
72 args['data'] = ''
73 data = args.pop('data', None)
73 data = args.pop('data', None)
74 headers = args.pop('headers', {})
74 headers = args.pop('headers', {})
General Comments 0
You need to be logged in to leave comments. Login now