We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3a8621 commit 2238370Copy full SHA for 2238370
eb_sqs/management/commands/process_queue.py
@@ -24,7 +24,7 @@ def handle(self, *args, **options):
24
if not options['queue_names']:
25
raise CommandError('Queue names (--queues) not specified')
26
27
- queue_names = [queue_name.trim() for queue_name in options['queue_names'].split(',')]
+ queue_names = [queue_name.rstrip() for queue_name in options['queue_names'].split(',')]
28
29
logger.debug('[django-eb-sqs] Connecting to SQS: {}'.format(', '.join(queue_names)))
30
0 commit comments