aboutsummaryrefslogtreecommitdiffstats
path: root/src/argparser.py
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2013-06-21 04:09:23 +0200
committerMattias Andrée <maandree@operamail.com>2013-06-21 04:09:23 +0200
commiteaa68ae79b1c465dcf126ea8f235a9231edd056e (patch)
treea64f607cf00893a1d14c4900b5cb551592e7b50a /src/argparser.py
parentbeginning of c version (diff)
downloadargparser-eaa68ae79b1c465dcf126ea8f235a9231edd056e.tar.gz
argparser-eaa68ae79b1c465dcf126ea8f235a9231edd056e.tar.bz2
argparser-eaa68ae79b1c465dcf126ea8f235a9231edd056e.tar.xz
m
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r--src/argparser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/argparser.py b/src/argparser.py
index 7d29ade..c56b482 100644
--- a/src/argparser.py
+++ b/src/argparser.py
@@ -300,7 +300,7 @@ class ArgParser():
self.message = ' '.join(self.files) if len(self.files) > 0 else None
if self.unrecognisedCount > 5:
- self.__print('%s: warning: %i more unrecognised %s\n' % (self.program, self.unrecognisedCount - 5, 'options' if self.unrecognisedCount == 6 else 'options'))
+ self.__print('%s: warning: %i more unrecognised %s' % (self.program, self.unrecognisedCount - 5, 'options' if self.unrecognisedCount == 6 else 'options'))
return self.rc