summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJavier Palacios <javiplx@gmail.com>2008-11-11 20:23:32 +0100
committerJavier Palacios <javiplx@gmail.com>2008-11-11 20:23:32 +0100
commit58f9bd5301399f9c2c6bcaaf4b9f2cbc608efade (patch)
treedb977c4694a5567e7196619607b157ab9657b96f
parent5f10ce62127401ec08666af28162090fdf0d7ad4 (diff)
downloadcobbler-58f9bd5301399f9c2c6bcaaf4b9f2cbc608efade.tar.gz
cobbler-58f9bd5301399f9c2c6bcaaf4b9f2cbc608efade.tar.xz
cobbler-58f9bd5301399f9c2c6bcaaf4b9f2cbc608efade.zip
Syntax error fixed
-rw-r--r--cobbler/action_import.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cobbler/action_import.py b/cobbler/action_import.py
index 11b2d39a..ca1bb47f 100644
--- a/cobbler/action_import.py
+++ b/cobbler/action_import.py
@@ -1081,7 +1081,7 @@ class DebianImporter ( BaseImporter ) :
repo.set_keep_updated( False )
repo.set_name( distro.name )
# NOTE : The location of the mirror should come from timezone
- repo.set_mirror( "http://ftp.%s.debian.org/debian/dists/%s" % ( 'us' , '@@suite@@' )
+ repo.set_mirror( "http://ftp.%s.debian.org/debian/dists/%s" % ( 'us' , '@@suite@@' ) )
security_repo = item_repo.Repo(main_importer.config)
security_repo.set_breed( "apt" )