Commit b9615d52 authored by Jacek Sowiński's avatar Jacek Sowiński

Tiny rename inside `DCommand.process_flags()`

Now desired result of DCommand.get_flags() should be more apparent.
parent 9b12ab96
...@@ -48,8 +48,8 @@ class DCommand(MultiCommand): ...@@ -48,8 +48,8 @@ class DCommand(MultiCommand):
pass pass
def process_flags(self): def process_flags(self):
opts, args = self.get_flags() opts, long_opts = self.get_flags()
opts, args = self.getopt("f" + opts, ["force"] + args) opts, args = self.getopt("f" + opts, ["force"] + long_opts)
for opt, value in opts: for opt, value in opts:
if opt == "-f" or opt == "--force": if opt == "-f" or opt == "--force":
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment