diff options
author | Max <post@wickenrode.com> | 2015-04-15 12:47:49 +0200 |
---|---|---|
committer | Max <post@wickenrode.com> | 2015-04-15 12:47:49 +0200 |
commit | 8f27fbe9ca78b8258809d1266820095361b46a13 (patch) | |
tree | ac6ff345e44c0d5ade1c69b993bd8cbdb4839d21 /Source | |
parent | 9a5cb83cdf913e616a0f96f4f720dc3187d650ce (diff) | |
parent | 0cf249446498aeae507f56855c8d657c75554a44 (diff) | |
download | sequelpro-8f27fbe9ca78b8258809d1266820095361b46a13.tar.gz sequelpro-8f27fbe9ca78b8258809d1266820095361b46a13.tar.bz2 sequelpro-8f27fbe9ca78b8258809d1266820095361b46a13.zip |
Merge branch 'master' of https://github.com/sequelpro/sequelpro
Diffstat (limited to 'Source')
-rw-r--r-- | Source/SPSQLExporter.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPSQLExporter.m b/Source/SPSQLExporter.m index f9dde93c..079ea8b9 100644 --- a/Source/SPSQLExporter.m +++ b/Source/SPSQLExporter.m @@ -729,7 +729,7 @@ // A NULL result indicates a permission problem if ([createProcedure isNSNull]) { - NSString *errorString = [NSString stringWithFormat:NSLocalizedString(@"Could not export the %@ '%@' because of a permisions error.\n", @"Procedure/function export permission error"), procedureType, procedureName]; + NSString *errorString = [NSString stringWithFormat:NSLocalizedString(@"Could not export the %@ '%@' because of a permissions error.\n", @"Procedure/function export permission error"), procedureType, procedureName]; [errors appendString:errorString]; if ([self sqlOutputIncludeErrors]) { [[self exportOutputFile] writeData:[[NSString stringWithFormat:@"# Error: %@\n", errorString] dataUsingEncoding:NSUTF8StringEncoding]]; |