Ticket #1548: deluge-console-command-argument-processing.patch
File deluge-console-command-argument-processing.patch, 497 bytes (added by , 14 years ago) |
---|
-
deluge/ui/console/main.py
diff --git a/deluge/ui/console/main.py b/deluge/ui/console/main.py index 6442e61..db2e843 100644
a b def __init__(self, args=None): 163 163 # Set the interactive flag to indicate where we should print the output 164 164 self.interactive = True 165 165 if args: 166 args = args[0]166 args = ' '.join(args) 167 167 self.interactive = False 168 168 169 169 # Try to connect to the localhost daemon