summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2014-10-21 15:45:55 +0100
committerSam Thursfield <sam.thursfield@codethink.co.uk>2014-10-21 15:45:55 +0100
commite12b335368b7df1de89330a1edc6a0aee70c0170 (patch)
tree2e631b1bea7787b4525dcb9f38e990813a7bbfed
parent61e835845955c3653198ffd6a64df7ff0f6a547e (diff)
downloadimport-e12b335368b7df1de89330a1edc6a0aee70c0170.tar.gz
rubygems.to_lorry: Remove trailing newline from exception message
-rwxr-xr-xexts/rubygems.to_lorry2
1 files changed, 1 insertions, 1 deletions
diff --git a/exts/rubygems.to_lorry b/exts/rubygems.to_lorry
index 564adc9..6807b21 100755
--- a/exts/rubygems.to_lorry
+++ b/exts/rubygems.to_lorry
@@ -78,7 +78,7 @@ class RubyGemLorryGenerator(ImportExtension):
def process_args(self, args):
if len(args) != 1:
raise ImportException(
- 'Please call me with the name of a RubyGem as an argument.\n')
+ 'Please call me with the name of a RubyGem as an argument.')
gem_name = args[0]