aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPExportUtilities.m
diff options
context:
space:
mode:
Diffstat (limited to 'Source/SPExportUtilities.m')
-rw-r--r--Source/SPExportUtilities.m3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/SPExportUtilities.m b/Source/SPExportUtilities.m
index 543beb67..447d4948 100644
--- a/Source/SPExportUtilities.m
+++ b/Source/SPExportUtilities.m
@@ -38,8 +38,7 @@ void SPExportDelegateConformsToProtocol(NSObject *delegate, Protocol *protocol)
// Check that the the supplied delegate conforms to the supplied protocol, if not throw an exception
if (![delegate conformsToProtocol:protocol]) {
[NSException raise:@"Protocol Conformance"
- format:@"The supplied delegate does not conform to the protocol '%@'."
- arguments:NSStringFromProtocol(protocol)];
+ format:@"The supplied delegate does not conform to the protocol '%@'.", NSStringFromProtocol(protocol)];
}
}