1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 | diff --git a/gitubuntu/importer.py b/gitubuntu/importer.py
index bfbabb0..878cd22 100644
--- a/gitubuntu/importer.py
+++ b/gitubuntu/importer.py
@@ -1158,6 +1158,10 @@ class GitUbuntuImport:
logging.info('Ubuntu Server Team importer v%s' % VERSION)
self.local_repo = GitUbuntuRepository(directory, user, args.proto)
+ if args.no_clean:
+ logging.info(
+ 'Using git repository at %s' % self.local_repo.local_dir
+ )
atexit.register(self.cleanup, no_clean, self.local_repo.local_dir)
|