diff options
author | Raja R Harinath <harinath@hurrynot.org> | 2010-06-19 20:30:17 +0530 |
---|---|---|
committer | Raja R Harinath <harinath@hurrynot.org> | 2010-06-19 20:54:03 +0530 |
commit | 150234320a79003d130f6528a35cda5ce523e1a5 (patch) | |
tree | 388a58bbda45a6e3118e842c990878722de4e29a | |
parent | a79e6c5ca1af54465d55f3d494398e392e20e4b9 (diff) | |
download | svn2git-150234320a79003d130f6528a35cda5ce523e1a5.tar svn2git-150234320a79003d130f6528a35cda5ce523e1a5.tar.gz svn2git-150234320a79003d130f6528a35cda5ce523e1a5.tar.bz2 svn2git-150234320a79003d130f6528a35cda5ce523e1a5.tar.xz svn2git-150234320a79003d130f6528a35cda5ce523e1a5.zip |
Fix typo
-rw-r--r-- | src/repository.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/repository.cpp b/src/repository.cpp index 29337eb..91f239e 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); |