diff --git a/git_import.py b/git_import.py
index 577aebf6af13994bb0ea91c7d3f3b5abb9d0af05..207da324e0b5c8677728d29525a7e47e402efaac 100644
--- a/git_import.py
+++ b/git_import.py
@@ -108,9 +108,10 @@ def getRepoYml():
 #	os.rmdir( PATH )
 
 if( os.path.exists(QPATH) ):
-    for f in os.listdir( QPATH ):
-        if( os.path.isfile( QPATH + '/' + f ) ):
-            h=hashlib.md5(open( QPATH + '/' + f,'rb').read()).hexdigest()
+    shutil.move( QPATH, './queue' )
+    for f in os.listdir( './queue' ):
+        if( os.path.isfile( './queue/' + f ) ):
+            h=hashlib.md5(open( './queue/' + f,'rb').read()).hexdigest()
             repo=open( QPATH + '/' + f,'r').read()
             os.system( 'rm -rf '+RPATH )
             os.system( 'git clone '+repo+' --config core.sshCommand="ssh -i ~/.ssh/p2p" ' + RPATH )
@@ -118,4 +119,5 @@ if( os.path.exists(QPATH) ):
             os.system( 'rm -rf ' + IPATH + '/' + uname )
             os.system( 'rm -rf ' + TPATH + '/' + uname )
             checkUserYml()
-            os.system( 'rm '+QPATH+'/'+f )
+
+            os.system( 'rm ./queue/'+f )