aboutsummaryrefslogtreecommitdiffstats
path: root/src/repository.cpp
diff options
context:
space:
mode:
authorMarc Guenther <marcguenther@me.com>2010-04-20 22:45:14 +0200
committerMarc Guenther <marcguenther@me.com>2010-04-20 22:45:14 +0200
commitb886ca85875859e7a3dd98aaf087abe9365c0646 (patch)
tree808706b6279d2914dacdc2d712c1ab3894710039 /src/repository.cpp
parenta9b9930b02bcf8fae908ea5a1d2d1a18bc362cac (diff)
downloadsvn2git-b886ca85875859e7a3dd98aaf087abe9365c0646.tar
svn2git-b886ca85875859e7a3dd98aaf087abe9365c0646.tar.gz
svn2git-b886ca85875859e7a3dd98aaf087abe9365c0646.tar.bz2
svn2git-b886ca85875859e7a3dd98aaf087abe9365c0646.tar.xz
svn2git-b886ca85875859e7a3dd98aaf087abe9365c0646.zip
small typo in debug message
Diffstat (limited to 'src/repository.cpp')
-rw-r--r--src/repository.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/repository.cpp b/src/repository.cpp
index 922027d..d589b6e 100644
--- a/src/repository.cpp
+++ b/src/repository.cpp
@@ -67,7 +67,7 @@ Repository::Repository(const Rules::Repository &rule)
fastImport.setWorkingDirectory(name);
if (!CommandLineParser::instance()->contains("dry-run")) {
if (!QDir(name).exists()) { // repo doesn't exist yet.
- qDebug() << "Creating new repositoryn" << name;
+ qDebug() << "Creating new repository" << name;
QDir::current().mkpath(name);
QProcess init;
init.setWorkingDirectory(name);